|
75 | 75 | <connection>scm:git:https://github.com/ome/ome-common-java</connection> |
76 | 76 | <developerConnection>scm:git:git@github.com:ome/ome-common-java</developerConnection> |
77 | 77 | <tag>HEAD</tag> |
78 | | - <url>http://github.com/ome/ome-common-java</url> |
| 78 | + <url>https://github.com/ome/ome-common-java</url> |
79 | 79 | </scm> |
80 | 80 | <issueManagement> |
81 | 81 | <system>Trac</system> |
82 | | - <url>https://trac.openmicroscopy.org/ome</url> |
| 82 | + <url>https://github.com/ome/ome-common-java/issues</url> |
83 | 83 | </issueManagement> |
84 | 84 | <ciManagement> |
85 | 85 | <system>Jenkins</system> |
86 | 86 | <url>https://ci.openmicroscopy.org/</url> |
87 | 87 | </ciManagement> |
88 | | - <distributionManagement> |
89 | | - <snapshotRepository> |
90 | | - <id>ossrh</id> |
91 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
92 | | - </snapshotRepository> |
93 | | - <repository> |
94 | | - <id>ossrh</id> |
95 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
96 | | - </repository> |
97 | | - </distributionManagement> |
98 | 88 |
|
99 | 89 | <dependencies> |
100 | 90 | <dependency> |
|
223 | 213 | <plugin> |
224 | 214 | <groupId>org.apache.maven.plugins</groupId> |
225 | 215 | <artifactId>maven-compiler-plugin</artifactId> |
226 | | - <version>3.7.0</version> |
| 216 | + <version>3.14.0</version> |
227 | 217 | <!-- Require the Java 8 platform. --> |
228 | 218 | <configuration> |
229 | | - <source>1.8</source> |
230 | | - <target>1.8</target> |
| 219 | + <release>8</release> |
| 220 | + <source>8</source> |
| 221 | + <target>8</target> |
231 | 222 | </configuration> |
232 | 223 | </plugin> |
233 | 224 |
|
|
434 | 425 | <id>release</id> |
435 | 426 | <build> |
436 | 427 | <plugins> |
437 | | - <!-- Stage releases with nexus --> |
438 | | - <plugin> |
439 | | - <groupId>org.sonatype.plugins</groupId> |
440 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
441 | | - <version>1.6.8</version> |
442 | | - <extensions>true</extensions> |
443 | | - <configuration> |
444 | | - <serverId>ossrh</serverId> |
445 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
446 | | - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
447 | | - </configuration> |
448 | | - </plugin> |
449 | 428 |
|
450 | 429 | <!-- gpg release signing --> |
451 | 430 | <plugin> |
452 | 431 | <groupId>org.apache.maven.plugins</groupId> |
453 | 432 | <artifactId>maven-gpg-plugin</artifactId> |
454 | | - <version>1.6</version> |
| 433 | + <version>3.2.7</version> |
455 | 434 | <executions> |
456 | 435 | <execution> |
457 | 436 | <id>sign-artifacts</id> |
|
462 | 441 | </execution> |
463 | 442 | </executions> |
464 | 443 | </plugin> |
| 444 | + |
| 445 | + <plugin> |
| 446 | + <groupId>org.sonatype.central</groupId> |
| 447 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 448 | + <version>0.8.0</version> |
| 449 | + <extensions>true</extensions> |
| 450 | + <configuration> |
| 451 | + <publishingServerId>central</publishingServerId> |
| 452 | + <tokenAuth>true</tokenAuth> |
| 453 | + </configuration> |
| 454 | + </plugin> |
465 | 455 | </plugins> |
466 | 456 | </build> |
467 | 457 | </profile> |
|
0 commit comments