Skip to content

Commit 9809a0e

Browse files
authored
Fix maven central publishing (#454)
1 parent 83527de commit 9809a0e

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
distribution: "temurin"
3838
java-version: 17
3939
cache: "maven"
40-
server-id: ossrh
40+
server-id: central
4141
server-username: MAVEN_USERNAME
4242
server-password: MAVEN_PASSWORD
4343
gpg-private-key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}

doc/changes/changes_4.2.0.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OpenFastTrace 4.2.0, released 2025-05-24
1+
# OpenFastTrace 4.2.0, released 2025-05-25
22

33
Code name: Markdown code blocks
44

@@ -29,4 +29,5 @@ Finally, we updated test dependencies and Maven plugins.
2929

3030
## Refactoring
3131

32-
#452: Migrated Deployment to new Central Repository mechanism
32+
* #452: Migrated Deployment to new Central Repository mechanism
33+
* #454: Fixed deployment to Maven Central

parent/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<revision>4.1.0</revision>
1414
<java.version>17</java.version>
1515
<junit.version>5.12.2</junit.version>
16-
<maven.surefire.version>3.5.2</maven.surefire.version>
16+
<maven.surefire.version>3.5.3</maven.surefire.version>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1919
<reproducible.build.timestamp>${git.commit.time}</reproducible.build.timestamp>
@@ -288,7 +288,7 @@
288288
<plugin>
289289
<groupId>io.github.git-commit-id</groupId>
290290
<artifactId>git-commit-id-maven-plugin</artifactId>
291-
<version>9.0.1</version>
291+
<version>9.0.2</version>
292292
<executions>
293293
<execution>
294294
<id>get-the-git-infos</id>
@@ -328,7 +328,7 @@
328328
<plugin>
329329
<groupId>org.apache.maven.plugins</groupId>
330330
<artifactId>maven-compiler-plugin</artifactId>
331-
<version>3.13.0</version>
331+
<version>3.14.0</version>
332332
<configuration>
333333
<source>${java.version}</source>
334334
<target>${java.version}</target>
@@ -378,7 +378,7 @@
378378
<plugin>
379379
<groupId>org.jacoco</groupId>
380380
<artifactId>jacoco-maven-plugin</artifactId>
381-
<version>0.8.12</version>
381+
<version>0.8.13</version>
382382
<executions>
383383
<execution>
384384
<id>merge-results</id>
@@ -465,7 +465,7 @@
465465
<configuration>
466466
<rules>
467467
<requireMavenVersion>
468-
<version>3.6.3</version>
468+
<version>3.8.7</version>
469469
</requireMavenVersion>
470470
</rules>
471471
</configuration>
@@ -539,12 +539,12 @@
539539
<plugin>
540540
<groupId>org.apache.maven.plugins</groupId>
541541
<artifactId>maven-clean-plugin</artifactId>
542-
<version>3.4.0</version>
542+
<version>3.4.1</version>
543543
</plugin>
544544
<plugin>
545545
<groupId>org.apache.maven.plugins</groupId>
546546
<artifactId>maven-install-plugin</artifactId>
547-
<version>3.1.3</version>
547+
<version>3.1.4</version>
548548
</plugin>
549549
<plugin>
550550
<groupId>org.apache.maven.plugins</groupId>
@@ -579,7 +579,7 @@
579579
<plugin>
580580
<groupId>org.codehaus.mojo</groupId>
581581
<artifactId>flatten-maven-plugin</artifactId>
582-
<version>1.6.0</version>
582+
<version>1.7.0</version>
583583
<configuration>
584584
<updatePomFile>true</updatePomFile>
585585
<flattenMode>resolveCiFriendliesOnly</flattenMode>
@@ -604,7 +604,7 @@
604604
<plugin>
605605
<groupId>org.apache.maven.plugins</groupId>
606606
<artifactId>maven-deploy-plugin</artifactId>
607-
<version>3.1.3</version>
607+
<version>3.1.4</version>
608608
</plugin>
609609
<!--This
610610
plugin's configuration is used to store Eclipse

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<plugin>
4141
<groupId>org.apache.maven.plugins</groupId>
4242
<artifactId>maven-deploy-plugin</artifactId>
43-
<version>3.0.0</version>
43+
<version>3.1.4</version>
4444
<configuration>
4545
<skip>true</skip>
4646
</configuration>

0 commit comments

Comments
 (0)