|
33 | 33 | <url>https://github.com/spdx/tools-java</url> |
34 | 34 | <connection>https://github.com/spdx/tools-java.git</connection> |
35 | 35 | <developerConnection>https://github.com/spdx/tools-java.git</developerConnection> |
| 36 | + <tag>master</tag> |
36 | 37 | </scm> |
37 | 38 | <issueManagement> |
38 | 39 | <system>Github</system> |
|
61 | 62 | </properties> |
62 | 63 | <profiles> |
63 | 64 | <profile> |
64 | | - <id>gpg-signing</id> |
| 65 | + <id>release</id> |
65 | 66 | <build> |
66 | 67 | <plugins> |
| 68 | + <plugin> |
| 69 | + <groupId>org.apache.maven.plugins</groupId> |
| 70 | + <artifactId>maven-source-plugin</artifactId> |
| 71 | + <version>3.2.1</version> |
| 72 | + <executions> |
| 73 | + <execution> |
| 74 | + <id>attach-sources</id> |
| 75 | + <phase>verify</phase> |
| 76 | + <goals> |
| 77 | + <goal>jar-no-fork</goal> |
| 78 | + </goals> |
| 79 | + </execution> |
| 80 | + </executions> |
| 81 | + </plugin> |
67 | 82 | <plugin> |
68 | 83 | <groupId>org.apache.maven.plugins</groupId> |
69 | 84 | <artifactId>maven-gpg-plugin</artifactId> |
|
205 | 220 | <plugin> |
206 | 221 | <groupId>org.apache.maven.plugins</groupId> |
207 | 222 | <artifactId>maven-compiler-plugin</artifactId> |
208 | | - <version>3.6.1</version> |
| 223 | + <version>3.11.0</version> |
209 | 224 | <configuration> |
210 | 225 | <encoding>${project.build.sourceEncoding}</encoding> |
211 | 226 | <showDeprecation>true</showDeprecation> |
|
235 | 250 | </execution> |
236 | 251 | </executions> |
237 | 252 | </plugin> |
238 | | - <plugin> |
239 | | - <groupId>org.apache.maven.plugins</groupId> |
240 | | - <artifactId>maven-source-plugin</artifactId> |
241 | | - <version>3.2.1</version> |
242 | | - <executions> |
243 | | - <execution> |
244 | | - <id>attach-sources</id> |
245 | | - <phase>verify</phase> |
246 | | - <goals> |
247 | | - <goal>jar-no-fork</goal> |
248 | | - </goals> |
249 | | - </execution> |
250 | | - </executions> |
251 | | - </plugin> |
252 | 253 | <plugin> |
253 | 254 | <groupId>org.apache.maven.plugins</groupId> |
254 | 255 | <artifactId>maven-shade-plugin</artifactId> |
|
288 | 289 | <plugin> |
289 | 290 | <groupId>org.spdx</groupId> |
290 | 291 | <artifactId>spdx-maven-plugin</artifactId> |
291 | | - <version>0.6.0</version> |
| 292 | + <version>0.7.2</version> |
292 | 293 | <executions> |
293 | 294 | <execution> |
294 | 295 | <id>build-spdx</id> |
|
300 | 301 | </executions> |
301 | 302 | <configuration> |
302 | 303 | <spdxDocumentNamespace>http://spdx.org/documents/tools-java-${project.version}</spdxDocumentNamespace> |
303 | | - <defaultFileCopyright>Copyright (c) 2020 Source Auditor Inc.</defaultFileCopyright> |
| 304 | + <defaultFileCopyright>Copyright (c) 2024 Source Auditor Inc.</defaultFileCopyright> |
304 | 305 | <defaultFileContributors> |
305 | 306 | <param>Gary O'Neall</param> |
306 | 307 | </defaultFileContributors> |
|
325 | 326 | <originator>Organization: Linux Foundation</originator> |
326 | 327 | </configuration> |
327 | 328 | </plugin> |
| 329 | + <plugin> |
| 330 | + <groupId>org.apache.maven.plugins</groupId> |
| 331 | + <artifactId>maven-release-plugin</artifactId> |
| 332 | + <version>3.0.1</version> |
| 333 | + <configuration> |
| 334 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 335 | + <releaseProfiles>release</releaseProfiles> |
| 336 | + <goals>deploy</goals> |
| 337 | + </configuration> |
| 338 | + </plugin> |
328 | 339 | </plugins> |
329 | 340 | </build> |
330 | 341 | </project> |
0 commit comments