Skip to content

Commit dff0a18

Browse files
committed
upgrade plugins and fix most validation issues
1 parent 8d6e80f commit dff0a18

File tree

1 file changed

+31
-18
lines changed

1 file changed

+31
-18
lines changed

pom.xml

Lines changed: 31 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,10 @@
131131
<plugin>
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-compiler-plugin</artifactId>
134-
<version>3.10.1</version>
134+
<version>3.11.0</version>
135135
<configuration>
136136
<source>1.8</source>
137137
<target>1.8</target>
138-
<optimize>true</optimize>
139138
<showWarnings>true</showWarnings>
140139
<showDeprecation>true</showDeprecation>
141140
</configuration>
@@ -154,18 +153,28 @@
154153
<plugin>
155154
<groupId>org.apache.maven.plugins</groupId>
156155
<artifactId>maven-source-plugin</artifactId>
157-
<version>3.2.1</version>
156+
<version>3.3.0</version>
158157
</plugin>
159158
<plugin>
160159
<groupId>org.codehaus.mojo</groupId>
161160
<artifactId>exec-maven-plugin</artifactId>
162-
<version>1.6.0</version>
161+
<version>3.1.0</version>
163162
</plugin>
164163
<plugin>
165164
<groupId>org.apache.maven.plugins</groupId>
166165
<artifactId>maven-jar-plugin</artifactId>
167166
<version>3.3.0</version>
168167
</plugin>
168+
<plugin>
169+
<groupId>org.apache.maven.plugins</groupId>
170+
<artifactId>maven-site-plugin</artifactId>
171+
<version>4.0.0-M9</version>
172+
</plugin>
173+
<plugin>
174+
<groupId>org.apache.maven.plugins</groupId>
175+
<artifactId>maven-resources-plugin</artifactId>
176+
<version>3.3.1</version>
177+
</plugin>
169178
</plugins>
170179
</pluginManagement>
171180
<plugins>
@@ -184,7 +193,7 @@
184193
<plugin>
185194
<groupId>org.apache.maven.plugins</groupId>
186195
<artifactId>maven-javadoc-plugin</artifactId>
187-
<version>3.4.1</version>
196+
<version>3.5.0</version>
188197
<configuration>
189198
<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
190199
<notimestamp>true</notimestamp>
@@ -198,18 +207,22 @@
198207
<plugin>
199208
<groupId>com.mycila</groupId>
200209
<artifactId>license-maven-plugin</artifactId>
201-
<version>4.1</version>
210+
<version>4.2</version>
202211
<configuration>
203212
<strictCheck>true</strictCheck>
204-
<header>com/mycila/maven/plugin/license/templates/MIT.txt</header>
205-
<includes>
206-
<include>src/**/*.java</include>
207-
<include>src/main/c/**/*.c</include>
208-
<include>src/main/c/**/*.h</include>
209-
</includes>
210-
<excludes>
211-
<exclude>${project.build.outputDirectory}</exclude>
212-
</excludes>
213+
<licenseSets>
214+
<licenseSet>
215+
<header>com/mycila/maven/plugin/license/templates/MIT.txt</header>
216+
<includes>
217+
<include>src/**/*.java</include>
218+
<include>src/main/c/**/*.c</include>
219+
<include>src/main/c/**/*.h</include>
220+
</includes>
221+
<excludes>
222+
<exclude>${project.build.outputDirectory}</exclude>
223+
</excludes>
224+
</licenseSet>
225+
</licenseSets>
213226
<properties>
214227
<owner>Phillip Schichtel</owner>
215228
</properties>
@@ -229,12 +242,12 @@
229242
<plugin>
230243
<groupId>org.apache.maven.plugins</groupId>
231244
<artifactId>maven-surefire-plugin</artifactId>
232-
<version>3.0.0-M7</version>
245+
<version>3.1.2</version>
233246
</plugin>
234247
<plugin>
235248
<groupId>org.apache.maven.plugins</groupId>
236249
<artifactId>maven-enforcer-plugin</artifactId>
237-
<version>3.1.0</version>
250+
<version>3.3.0</version>
238251
<executions>
239252
<execution>
240253
<id>enforce-java</id>
@@ -302,7 +315,7 @@
302315
<plugin>
303316
<groupId>org.apache.maven.plugins</groupId>
304317
<artifactId>maven-gpg-plugin</artifactId>
305-
<version>1.6</version>
318+
<version>3.1.0</version>
306319
<executions>
307320
<execution>
308321
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)