|
23 | 23 | <parent> |
24 | 24 | <groupId>org.eclipse.ee4j</groupId> |
25 | 25 | <artifactId>project</artifactId> |
26 | | - <version>1.0.6</version> |
| 26 | + <version>1.0.7</version> |
27 | 27 | <relativePath/> |
28 | 28 | </parent> |
29 | 29 |
|
|
75 | 75 | </developers> |
76 | 76 |
|
77 | 77 | <properties> |
78 | | - <config.dir>${project.root.location}/etc/config</config.dir> |
79 | | - <copyright.exclude>${config.dir}/copyright-exclude</copyright.exclude> |
80 | | - <copyright.templatefile>${config.dir}/copyright.txt</copyright.templatefile> |
| 78 | + <copyright.exclude>${project.basedir}/../etc/copyright-exclude</copyright.exclude> |
| 79 | + <copyright.templatefile>${project.basedir}/../etc/copyright.txt</copyright.templatefile> |
81 | 80 | <copyright.ignoreyear>false</copyright.ignoreyear> |
82 | 81 | <copyright.scmonly>true</copyright.scmonly> |
83 | 82 | <copyright.update>false</copyright.update> |
| 83 | + <spotbugs.exclude>${project.basedir}/../etc/spotbugs-exclude.xml</spotbugs.exclude> |
84 | 84 | <spotbugs.skip>false</spotbugs.skip> |
85 | 85 | <spotbugs.threshold>Low</spotbugs.threshold> |
86 | | - <spotbugs.version>4.2.2</spotbugs.version> |
| 86 | + <spotbugs.version>4.3.0</spotbugs.version> |
87 | 87 |
|
88 | 88 | <non.final>false</non.final> |
89 | 89 | <extension.name>jakarta.json</extension.name> |
|
100 | 100 | <artifactId>directory-maven-plugin</artifactId> |
101 | 101 | <version>0.3.1</version> |
102 | 102 | </plugin> |
103 | | - |
104 | 103 | <plugin> |
105 | 104 | <groupId>org.codehaus.mojo</groupId> |
106 | 105 | <artifactId>buildnumber-maven-plugin</artifactId> |
|
149 | 148 | <plugin> |
150 | 149 | <groupId>org.apache.maven.plugins</groupId> |
151 | 150 | <artifactId>maven-javadoc-plugin</artifactId> |
152 | | - <version>3.2.0</version> |
| 151 | + <version>3.3.0</version> |
153 | 152 | </plugin> |
154 | 153 | <plugin> |
155 | 154 | <groupId>org.apache.maven.plugins</groupId> |
156 | 155 | <artifactId>maven-enforcer-plugin</artifactId> |
157 | | - <version>3.0.0-M3</version> |
| 156 | + <version>3.0.0</version> |
158 | 157 | </plugin> |
159 | 158 | <plugin> |
160 | 159 | <groupId>com.github.spotbugs</groupId> |
161 | 160 | <artifactId>spotbugs-maven-plugin</artifactId> |
162 | 161 | <version>${spotbugs.version}</version> |
| 162 | + <configuration> |
| 163 | + <skip>${spotbugs.skip}</skip> |
| 164 | + <threshold>${spotbugs.threshold}</threshold> |
| 165 | + </configuration> |
163 | 166 | </plugin> |
164 | 167 | </plugins> |
165 | 168 | </pluginManagement> |
|
204 | 207 | </executions> |
205 | 208 | </plugin> |
206 | 209 | <plugin> |
207 | | - <!-- Requires validate target to initialize copyright.config.dir properly --> |
208 | 210 | <!-- e.g. mvn validate glassfish-copyright:repair --> |
209 | 211 | <groupId>org.glassfish.copyright</groupId> |
210 | 212 | <artifactId>glassfish-copyright-maven-plugin</artifactId> |
|
276 | 278 | <locale>en,US</locale> |
277 | 279 | <pattern>yyyy</pattern> |
278 | 280 | </configuration> |
279 | | - </execution> |
| 281 | + </execution> |
280 | 282 | </executions> |
281 | 283 | </plugin> |
282 | 284 | <plugin> |
|
287 | 289 | <compilerArgs> |
288 | 290 | <arg>-Xlint:all</arg> |
289 | 291 | </compilerArgs> |
| 292 | + <showDeprecation>true</showDeprecation> |
| 293 | + <showWarnings>true</showWarnings> |
290 | 294 | </configuration> |
291 | 295 | <executions> |
292 | 296 | <execution> |
@@ -404,10 +408,10 @@ Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top"> |
404 | 408 | <groupId>com.github.spotbugs</groupId> |
405 | 409 | <artifactId>spotbugs-maven-plugin</artifactId> |
406 | 410 | <configuration> |
407 | | - <skip>${spotbugs.skip}</skip> |
408 | | - <threshold>${spotbugs.threshold}</threshold> |
409 | 411 | <findbugsXmlWithMessages>true</findbugsXmlWithMessages> |
410 | 412 | <fork>true</fork> |
| 413 | + <excludeFilterFile>${spotbugs.exclude}</excludeFilterFile> |
| 414 | + <failThreshold>High</failThreshold> |
411 | 415 | </configuration> |
412 | 416 | </plugin> |
413 | 417 | </plugins> |
|
0 commit comments