|
42 | 42 |
|
43 | 43 | <distributionManagement> |
44 | 44 | <snapshotRepository> |
45 | | - <id>ossrh</id> |
46 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 45 | + <id>sonatype-central-portal</id> |
| 46 | + <name>AEM Classification Snapshots</name> |
| 47 | + <url>https://central.sonatype.com/repository/maven-snapshots</url> |
47 | 48 | </snapshotRepository> |
48 | 49 | <repository> |
49 | | - <id>ossrh</id> |
50 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 50 | + <id>sonatype-central-portal</id> |
| 51 | + <name>AEM Classification Releases</name> |
| 52 | + <url>https://repo.maven.apache.org/maven2</url> |
51 | 53 | </repository> |
52 | 54 | </distributionManagement> |
53 | 55 |
|
54 | 56 | <properties> |
55 | | - <maven.version>3.3.9</maven.version> |
| 57 | + <maven.version>3.9</maven.version> |
56 | 58 | <maven.compiler.release>8</maven.compiler.release> <!-- used for compiler and javadoc plugin --> |
57 | 59 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
58 | 60 | <junit.jupiter.version>5.9.0</junit.jupiter.version> |
| 61 | + <njord.version>0.8.3</njord.version> |
59 | 62 | </properties> |
60 | 63 |
|
61 | 64 | <dependencyManagement> |
|
76 | 79 | </dependencyManagement> |
77 | 80 |
|
78 | 81 | <build> |
| 82 | + <extensions> |
| 83 | + <extension> |
| 84 | + <groupId>eu.maveniverse.maven.njord</groupId> |
| 85 | + <artifactId>extension3</artifactId> |
| 86 | + <version>${njord.version}</version> |
| 87 | + </extension> |
| 88 | + </extensions> |
79 | 89 | <pluginManagement> |
80 | 90 | <plugins> |
| 91 | + <plugin> |
| 92 | + <groupId>eu.maveniverse.maven.plugins</groupId> |
| 93 | + <artifactId>njord</artifactId> |
| 94 | + <version>${njord.version}</version> |
| 95 | + </plugin> |
81 | 96 | <plugin> |
82 | 97 | <artifactId>maven-surefire-plugin</artifactId> |
83 | 98 | <version>3.5.1</version> |
|
254 | 269 | <scmReleaseCommitComment>@{prefix} prepare release @{releaseLabel} [skip ci]</scmReleaseCommitComment> |
255 | 270 | </configuration> |
256 | 271 | </plugin> |
257 | | - <plugin> |
258 | | - <groupId>org.sonatype.plugins</groupId> |
259 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
260 | | - <extensions>true</extensions> |
261 | | - <configuration> |
262 | | - <serverId>ossrh</serverId> |
263 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
264 | | - <!-- manually release in https://oss.sonatype.org/#stagingRepositories after the Maven release build --> |
265 | | - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
266 | | - </configuration> |
267 | | - </plugin> |
268 | | - |
269 | 272 | <plugin> |
270 | 273 | <groupId>org.codehaus.mojo</groupId> |
271 | 274 | <artifactId>license-maven-plugin</artifactId> |
|
0 commit comments