Skip to content

Commit b70992c

Browse files
committed
#431: Attempt to fix new Maven deployment.
1 parent d05db9b commit b70992c

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

doc/changes/changes_4.2.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenFastTrace 4.2.0, released 2025-05-25
1+
# OpenFastTrace 4.2.0, released 2025-06-09
22

33
Code name: Markdown code blocks
44

parent/pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,11 @@
246246
<plugin>
247247
<groupId>org.sonatype.central</groupId>
248248
<artifactId>central-publishing-maven-plugin</artifactId>
249+
<version>0.7.0</version>
250+
<extensions>true</extensions>
251+
<configuration>
252+
<publishingServerId>central</publishingServerId>
253+
</configuration>
249254
</plugin>
250255
<plugin>
251256
<groupId>org.apache.maven.plugins</groupId>
@@ -254,6 +259,7 @@
254259
<plugin>
255260
<groupId>org.apache.maven.plugins</groupId>
256261
<artifactId>maven-deploy-plugin</artifactId>
262+
<version>3.1.4</version>
257263
</plugin>
258264
</plugins>
259265
</build>
@@ -465,7 +471,7 @@
465471
<configuration>
466472
<rules>
467473
<requireMavenVersion>
468-
<version>3.8.7</version>
474+
<version>3.9.9</version>
469475
</requireMavenVersion>
470476
</rules>
471477
</configuration>
@@ -692,4 +698,16 @@
692698
</plugin>
693699
</plugins>
694700
</reporting>
701+
<distributionManagement>
702+
<repository>
703+
<id>central</id>
704+
<name>Maven Central</name>
705+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
706+
</repository>
707+
<snapshotRepository>
708+
<id>central</id>
709+
<name>Maven Central Snapshots</name>
710+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
711+
</snapshotRepository>
712+
</distributionManagement>
695713
</project>

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
We use the minimal timestamp to suppress a warning by artifact:compare. -->
1717
<project.build.outputTimestamp>1980-01-01T00:00:02Z</project.build.outputTimestamp>
1818
</properties>
19+
<prerequisites>
20+
<maven>3.9.9</maven>
21+
</prerequisites>
1922
<modules>
2023
<module>parent</module>
2124
<module>api</module>

0 commit comments

Comments
 (0)