Skip to content

Commit

Permalink
Release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rzo1 committed Dec 3, 2024
1 parent 99a0624 commit 3e8ceb0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 22 deletions.
30 changes: 12 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>de.hs-heilbronn.mi</groupId>
<artifactId>zlibsvm</artifactId>
<packaging>pom</packaging>
<version>2.1.1-SNAPSHOT</version>
<version>2.1.1</version>

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

<zlibsvm.version>2.1.1-SNAPSHOT</zlibsvm.version>
<zlibsvm.version>2.1.1</zlibsvm.version>
<libsvm.version>3.35</libsvm.version>
<!-- apache commons stuff -->
<commons.lang3.version>3.13.0</commons.lang3.version>

<!-- additional dependencies -->
<junit.version>4.13.2</junit.version>
Expand Down Expand Up @@ -114,19 +112,6 @@
</dependencies>
</dependencyManagement>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<name>Sonatype Nexus snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<name>Sonatype Nexus release repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<build>
<pluginManagement>
<plugins>
Expand Down Expand Up @@ -276,7 +261,7 @@

<profiles>
<profile>
<id>release-deployment</id>
<id>release</id>
<build>
<plugins>
<plugin>
Expand All @@ -299,6 +284,15 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down
4 changes: 2 additions & 2 deletions zlibsvm-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.hs-heilbronn.mi</groupId>
<artifactId>zlibsvm</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.1.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -30,7 +30,7 @@

<profiles>
<profile>
<id>release-deployment</id>
<id>release</id>
<build>
<plugins>
<plugin>
Expand Down
4 changes: 2 additions & 2 deletions zlibsvm-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.hs-heilbronn.mi</groupId>
<artifactId>zlibsvm</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.1.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -58,7 +58,7 @@

<profiles>
<profile>
<id>release-deployment</id>
<id>release</id>
<build>
<plugins>
<plugin>
Expand Down

0 comments on commit 3e8ceb0

Please sign in to comment.