Skip to content

Commit

Permalink
Update project and dependency versions in pom.xml
Browse files Browse the repository at this point in the history
Upgraded the project version to 1.20.0 and updated several dependency versions to their latest releases. This ensures compatibility, incorporates bug fixes, and provides access to the latest features from the updated libraries.
  • Loading branch information
skynetcap committed Dec 24, 2024
1 parent 1dbaf1b commit e94a152
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<groupId>com.mmorrell</groupId>
<artifactId>solanaj</artifactId>
<packaging>jar</packaging>
<version>1.19.3</version>
<version>1.20.0</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Java client for Solana RPC</description>
<url>https://github.com/skynetcap/solanaj</url>
@@ -36,13 +36,13 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.11.0</version>
<version>5.11.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bitcoinj</groupId>
<artifactId>bitcoinj-core</artifactId>
<version>0.16.3</version>
<version>0.16.4</version>
<exclusions>
<exclusion>
<groupId>com.google.protobuf</groupId>
@@ -61,17 +61,17 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15to18</artifactId>
<version>1.78.1</version>
<version>1.79</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.3.1-jre</version>
<version>33.4.0-jre</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-javalite</artifactId>
<version>4.28.3</version>
<version>4.29.2</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
@@ -81,28 +81,28 @@
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi</artifactId>
<version>1.15.1</version>
<version>1.15.2</version>
</dependency>
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi-adapters</artifactId>
<version>1.15.1</version>
<version>1.15.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>2.0.13</version>
<version>2.0.16</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.6</version>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
<version>1.18.36</version>
</dependency>
<dependency>
<groupId>net.i2p.crypto</groupId>
@@ -112,17 +112,17 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.18.0</version>
<version>2.18.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.18.0</version>
<version>2.18.2</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.12.4</version>
<version>5.14.2</version>
<scope>test</scope>
</dependency>
</dependencies>

0 comments on commit e94a152

Please sign in to comment.