Skip to content

Commit 79e8008

Browse files
committed
Merge branch 'release/2025.7.1'
2 parents e8662d4 + 087e7b3 commit 79e8008

File tree

3 files changed

+11
-31
lines changed

3 files changed

+11
-31
lines changed

.github/workflows/development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
java-version: 17
2727
distribution: 'zulu'
2828
cache: 'maven'
29-
server-id: ossrh
29+
server-id: central
3030
server-username: OSS_CENTRAL_USERNAME # env variable for Maven Central
3131
server-password: OSS_CENTRAL_PASSWORD # env variable for Maven Central
3232

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
java-version: 17
3131
distribution: 'zulu'
3232
cache: 'maven'
33-
server-id: ossrh
33+
server-id: central
3434
server-username: OSS_CENTRAL_USERNAME # env variable for Maven Central
3535
server-password: OSS_CENTRAL_PASSWORD # env variable for Maven Central
3636

pom.xml

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

55
<groupId>io.toolisticon.maven.parent</groupId>
66
<artifactId>maven-parent-kotlin-base</artifactId>
7-
<version>2025.6.1</version>
7+
<version>2025.7.1</version>
88

99
<name>Maven Parent - Kotlin Base</name>
1010
<description>Maven parent for a holistic kotlin lib project.</description>
@@ -51,7 +51,7 @@
5151
<java.version>17</java.version>
5252
<jdk.version>17</jdk.version>
5353

54-
<kotlinx-serialization.version>1.8.1</kotlinx-serialization.version>
54+
<kotlinx-serialization.version>1.9.0</kotlinx-serialization.version>
5555
<kotlinx-coroutines.version>1.10.2</kotlinx-coroutines.version>
5656
<kotlin-logging.version>7.0.7</kotlin-logging.version>
5757

@@ -1024,25 +1024,16 @@
10241024
<groupId>org.apache.maven.plugins</groupId>
10251025
<artifactId>maven-gpg-plugin</artifactId>
10261026
</plugin>
1027-
1028-
<!-- [RELEASE] NEXUS (version, config, execution) -->
1027+
<!-- [RELEASE] NEXUS (version, configuration) -->
10291028
<plugin>
1030-
<groupId>org.sonatype.plugins</groupId>
1031-
<artifactId>nexus-staging-maven-plugin</artifactId>
1029+
<groupId>org.sonatype.central</groupId>
1030+
<artifactId>central-publishing-maven-plugin</artifactId>
1031+
<version>0.8.0</version>
1032+
<extensions>true</extensions>
10321033
<configuration>
1033-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
1034-
<serverId>ossrh</serverId>
1035-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
1034+
<publishingServerId>central</publishingServerId>
1035+
<autoPublish>true</autoPublish>
10361036
</configuration>
1037-
<executions>
1038-
<execution>
1039-
<id>default-deploy</id>
1040-
<phase>deploy</phase>
1041-
<goals>
1042-
<goal>deploy</goal>
1043-
</goals>
1044-
</execution>
1045-
</executions>
10461037
</plugin>
10471038
</plugins>
10481039
</build>
@@ -1065,17 +1056,6 @@
10651056
<tag>HEAD</tag>
10661057
</scm>
10671058

1068-
<distributionManagement>
1069-
<snapshotRepository>
1070-
<id>ossrh</id>
1071-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
1072-
</snapshotRepository>
1073-
<repository>
1074-
<id>ossrh</id>
1075-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
1076-
</repository>
1077-
</distributionManagement>
1078-
10791059
<developers>
10801060
<developer>
10811061
<id>jangalinski</id>

0 commit comments

Comments
 (0)