Skip to content

Commit 3e8ceb0

Browse files
committed
Release 2.1.1
1 parent 99a0624 commit 3e8ceb0

File tree

3 files changed

+16
-22
lines changed

3 files changed

+16
-22
lines changed

pom.xml

+12-18
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>de.hs-heilbronn.mi</groupId>
88
<artifactId>zlibsvm</artifactId>
99
<packaging>pom</packaging>
10-
<version>2.1.1-SNAPSHOT</version>
10+
<version>2.1.1</version>
1111

1212
<name>zlibsvm</name>
1313
<description>A Java binding for the famous LIBSVM library</description>
@@ -78,10 +78,8 @@
7878
<maven.compile.encoding>UTF-8</maven.compile.encoding>
7979
<maven.compiler.target>${java.target}</maven.compiler.target>
8080

81-
<zlibsvm.version>2.1.1-SNAPSHOT</zlibsvm.version>
81+
<zlibsvm.version>2.1.1</zlibsvm.version>
8282
<libsvm.version>3.35</libsvm.version>
83-
<!-- apache commons stuff -->
84-
<commons.lang3.version>3.13.0</commons.lang3.version>
8583

8684
<!-- additional dependencies -->
8785
<junit.version>4.13.2</junit.version>
@@ -114,19 +112,6 @@
114112
</dependencies>
115113
</dependencyManagement>
116114

117-
<distributionManagement>
118-
<snapshotRepository>
119-
<id>ossrh</id>
120-
<name>Sonatype Nexus snapshot repository</name>
121-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
122-
</snapshotRepository>
123-
<repository>
124-
<id>ossrh</id>
125-
<name>Sonatype Nexus release repository</name>
126-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
127-
</repository>
128-
</distributionManagement>
129-
130115
<build>
131116
<pluginManagement>
132117
<plugins>
@@ -276,7 +261,7 @@
276261

277262
<profiles>
278263
<profile>
279-
<id>release-deployment</id>
264+
<id>release</id>
280265
<build>
281266
<plugins>
282267
<plugin>
@@ -299,6 +284,15 @@
299284
<groupId>org.apache.maven.plugins</groupId>
300285
<artifactId>maven-gpg-plugin</artifactId>
301286
</plugin>
287+
<plugin>
288+
<groupId>org.sonatype.central</groupId>
289+
<artifactId>central-publishing-maven-plugin</artifactId>
290+
<version>0.6.0</version>
291+
<extensions>true</extensions>
292+
<configuration>
293+
<publishingServerId>central</publishingServerId>
294+
</configuration>
295+
</plugin>
302296
</plugins>
303297
</build>
304298
</profile>

zlibsvm-api/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>de.hs-heilbronn.mi</groupId>
77
<artifactId>zlibsvm</artifactId>
8-
<version>2.1.1-SNAPSHOT</version>
8+
<version>2.1.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -30,7 +30,7 @@
3030

3131
<profiles>
3232
<profile>
33-
<id>release-deployment</id>
33+
<id>release</id>
3434
<build>
3535
<plugins>
3636
<plugin>

zlibsvm-core/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>de.hs-heilbronn.mi</groupId>
77
<artifactId>zlibsvm</artifactId>
8-
<version>2.1.1-SNAPSHOT</version>
8+
<version>2.1.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -58,7 +58,7 @@
5858

5959
<profiles>
6060
<profile>
61-
<id>release-deployment</id>
61+
<id>release</id>
6262
<build>
6363
<plugins>
6464
<plugin>

0 commit comments

Comments
 (0)