Skip to content

Commit b761002

Browse files
Update to Maven 3.9.10 and add Njord configuration
1 parent 4200d41 commit b761002

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

.mvn/wrapper/maven-wrapper.properties

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
wrapperVersion=3.3.2
1817
distributionType=only-script
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
20-
distributionSha256Sum=4ec3f26fb1a692473aea0235c300bd20f0f9fe741947c82c1234cefd76ac3a3c
18+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip
19+
distributionSha256Sum=b917e5e8c9f86a063e621241392f43619f414e68de93c1a6753cd56594cdac40

pom.xml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.codelerity</groupId>
66
<artifactId>codelerity-core</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

1010
<name>Codelerity CORE</name>
@@ -41,17 +41,18 @@
4141

4242
<distributionManagement>
4343
<snapshotRepository>
44-
<id>ossrh</id>
45-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
44+
<id>sonatype-central-c2</id>
45+
<url>https://central.sonatype.com/repository/maven-snapshots</url>
4646
</snapshotRepository>
4747
<repository>
48-
<id>ossrh</id>
49-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
48+
<id>sonatype-central-c2</id>
49+
<url>https://repo.maven.apache.org/maven2</url>
5050
</repository>
5151
</distributionManagement>
5252

5353
<properties>
5454
<praxiscore.version>6.3.0</praxiscore.version>
55+
<njord.version>0.8.0</njord.version>
5556
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5657
</properties>
5758

@@ -86,6 +87,13 @@
8687
</dependencies>
8788

8889
<build>
90+
<extensions>
91+
<extension>
92+
<groupId>eu.maveniverse.maven.njord</groupId>
93+
<artifactId>extension3</artifactId>
94+
<version>${njord.version}</version>
95+
</extension>
96+
</extensions>
8997
<pluginManagement>
9098
<plugins>
9199
<plugin>
@@ -173,6 +181,11 @@
173181
</additionalOptions>
174182
</configuration>
175183
</plugin>
184+
<plugin>
185+
<groupId>eu.maveniverse.maven.plugins</groupId>
186+
<artifactId>njord</artifactId>
187+
<version>${njord.version}</version>
188+
</plugin>
176189
</plugins>
177190
</pluginManagement>
178191

0 commit comments

Comments
 (0)