Skip to content

Commit 9c32694

Browse files
authored
Merge pull request #32 from MobileID-Strong-Authentication/develop
Develop
2 parents 20167e2 + 3499086 commit 9c32694

5 files changed

Lines changed: 18 additions & 25 deletions

File tree

mid-java-client-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-core</artifactId>

mid-java-client-rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-rest</artifactId>

mid-java-client-soap/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-soap</artifactId>

mid-java-client-usage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
</parent>
1111

1212
<artifactId>mid-java-client-usage</artifactId>

pom.xml

Lines changed: 14 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>ch.mobileid.mid-java-client</groupId>
88
<artifactId>mid-java-client-parent</artifactId>
9-
<version>1.5.7</version>
9+
<version>1.5.8</version>
1010
<name>Mobile ID Java client</name>
1111
<description>Mobile ID client reference implementation in Java</description>
1212
<url>https://github.com/MobileID-Strong-Authentication/mobileid-client-java</url>
@@ -86,7 +86,7 @@
8686
<dependency>
8787
<groupId>commons-io</groupId>
8888
<artifactId>commons-io</artifactId>
89-
<version>2.14.0</version>
89+
<version>2.16.1</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>commons-codec</groupId>
@@ -113,17 +113,17 @@
113113
<dependency>
114114
<groupId>org.bouncycastle</groupId>
115115
<artifactId>bcprov-jdk18on</artifactId>
116-
<version>1.78</version>
116+
<version>1.80</version>
117117
</dependency>
118118
<dependency>
119119
<groupId>org.bouncycastle</groupId>
120120
<artifactId>bcpkix-jdk18on</artifactId>
121-
<version>1.79</version>
121+
<version>1.80</version>
122122
</dependency>
123123
<dependency>
124124
<groupId>org.bouncycastle</groupId>
125125
<artifactId>bcutil-jdk18on</artifactId>
126-
<version>1.78.1</version>
126+
<version>1.80</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>org.junit.jupiter</groupId>
@@ -211,15 +211,16 @@
211211
</dependencies>
212212
</plugin>
213213
<plugin>
214-
<groupId>org.sonatype.plugins</groupId>
215-
<artifactId>nexus-staging-maven-plugin</artifactId>
216-
<version>1.6.13</version>
214+
<groupId>org.sonatype.central</groupId>
215+
<artifactId>central-publishing-maven-plugin</artifactId>
216+
<version>0.8.0</version>
217217
</plugin>
218218
<plugin>
219219
<groupId>org.apache.maven.plugins</groupId>
220220
<artifactId>maven-gpg-plugin</artifactId>
221221
<version>3.0.1</version>
222222
</plugin>
223+
223224
</plugins>
224225
</pluginManagement>
225226
</build>
@@ -238,14 +239,6 @@
238239
</scm>
239240

240241
<distributionManagement>
241-
<snapshotRepository>
242-
<id>ossrh</id>
243-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
244-
</snapshotRepository>
245-
<repository>
246-
<id>ossrh</id>
247-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
248-
</repository>
249242
</distributionManagement>
250243

251244
<profiles>
@@ -285,13 +278,13 @@
285278
</executions>
286279
</plugin>
287280
<plugin>
288-
<groupId>org.sonatype.plugins</groupId>
289-
<artifactId>nexus-staging-maven-plugin</artifactId>
281+
<groupId>org.sonatype.central</groupId>
282+
<artifactId>central-publishing-maven-plugin</artifactId>
283+
<version>0.8.0</version>
290284
<extensions>true</extensions>
291285
<configuration>
292-
<serverId>ossrh</serverId>
293-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
294-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
286+
<publishingServerId>central</publishingServerId>
287+
<autoPublish>true</autoPublish>
295288
</configuration>
296289
</plugin>
297290
<plugin>

0 commit comments

Comments
 (0)