Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mid-java-client-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ch.mobileid.mid-java-client</groupId>
<artifactId>mid-java-client-parent</artifactId>
<version>1.5.7</version>
<version>1.5.8</version>
</parent>

<artifactId>mid-java-client-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mid-java-client-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ch.mobileid.mid-java-client</groupId>
<artifactId>mid-java-client-parent</artifactId>
<version>1.5.7</version>
<version>1.5.8</version>
</parent>

<artifactId>mid-java-client-rest</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mid-java-client-soap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ch.mobileid.mid-java-client</groupId>
<artifactId>mid-java-client-parent</artifactId>
<version>1.5.7</version>
<version>1.5.8</version>
</parent>

<artifactId>mid-java-client-soap</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion mid-java-client-usage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>ch.mobileid.mid-java-client</groupId>
<artifactId>mid-java-client-parent</artifactId>
<version>1.5.7</version>
<version>1.5.8</version>
</parent>

<artifactId>mid-java-client-usage</artifactId>
Expand Down
35 changes: 14 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>ch.mobileid.mid-java-client</groupId>
<artifactId>mid-java-client-parent</artifactId>
<version>1.5.7</version>
<version>1.5.8</version>
<name>Mobile ID Java client</name>
<description>Mobile ID client reference implementation in Java</description>
<url>https://github.com/MobileID-Strong-Authentication/mobileid-client-java</url>
Expand Down Expand Up @@ -86,7 +86,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.14.0</version>
<version>2.16.1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand All @@ -113,17 +113,17 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.78</version>
<version>1.80</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>1.79</version>
<version>1.80</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-jdk18on</artifactId>
<version>1.78.1</version>
<version>1.80</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down Expand Up @@ -211,15 +211,16 @@
</dependencies>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
</plugin>

</plugins>
</pluginManagement>
</build>
Expand All @@ -238,14 +239,6 @@
</scm>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<profiles>
Expand Down Expand Up @@ -285,13 +278,13 @@
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
Expand Down
Loading