Skip to content

Commit 8d26978

Browse files
committed
fix: Bumped to 9.4.0
1 parent efa978f commit 8d26978

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Add the following to your `build.gradle` or `build.gradle.kts` file:
7474

7575
```groovy
7676
dependencies {
77-
implementation("com.vonage:server-sdk:9.3.1")
77+
implementation("com.vonage:server-sdk:9.4.0")
7878
}
7979
```
8080

@@ -85,7 +85,7 @@ Add the following to the `<dependencies>` section of your `pom.xml` file:
8585
<dependency>
8686
<groupId>com.vonage</groupId>
8787
<artifactId>server-sdk</artifactId>
88-
<version>9.3.1</version>
88+
<version>9.4.0</version>
8989
</dependency>
9090
```
9191

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.vonage</groupId>
77
<artifactId>server-sdk</artifactId>
8-
<version>9.3.1</version>
8+
<version>9.4.0</version>
99

1010
<name>Vonage Java Server SDK</name>
1111
<description>Java client for Vonage APIs</description>
@@ -309,14 +309,14 @@
309309
</configuration>
310310
</plugin>
311311
<plugin>
312-
<groupId>org.sonatype.plugins</groupId>
313-
<artifactId>nexus-staging-maven-plugin</artifactId>
314-
<version>1.7.0</version>
312+
<groupId>org.sonatype.central</groupId>
313+
<artifactId>central-publishing-maven-plugin</artifactId>
314+
<version>0.7.0</version>
315315
<extensions>true</extensions>
316316
<configuration>
317-
<serverId>nexus-releases</serverId>
318-
<nexusUrl>${nexusUrl}</nexusUrl>
319-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
317+
<publishingServerId>central</publishingServerId>
318+
<autoPublish>true</autoPublish>
319+
<waitUntil>published</waitUntil>
320320
</configuration>
321321
</plugin>
322322
</plugins>

src/main/java/com/vonage/client/HttpWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
public class HttpWrapper {
3838
private static final String
3939
CLIENT_NAME = "vonage-java-sdk",
40-
CLIENT_VERSION = "9.3.1",
40+
CLIENT_VERSION = "9.4.0",
4141
JAVA_VERSION = System.getProperty("java.version"),
4242
USER_AGENT = String.format("%s/%s java/%s", CLIENT_NAME, CLIENT_VERSION, JAVA_VERSION);
4343

0 commit comments

Comments
 (0)