Skip to content
This repository was archived by the owner on Aug 14, 2023. It is now read-only.

Commit 81597b0

Browse files
committed
4.5.16
1 parent 14164b0 commit 81597b0

File tree

3 files changed

+98
-2
lines changed

3 files changed

+98
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add this to your SBT project's `build.sbt`:
2121
"ethereum" at "https://dl.bintray.com/ethereum/maven/"
2222
)
2323

24-
libraryDependencies += "com.micronautics" %% "web3j-scala" % "4.5.15" withSources()
24+
libraryDependencies += "com.micronautics" %% "web3j-scala" % "4.5.16" withSources()
2525

2626
This library is cross-built for Scala 2.12 and 2.13. Tested with Oracle JDK 8 and OpenJDK 8 & 11.
2727

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val web3jVersion = "4.5.15"
1+
val web3jVersion = "4.5.16"
22

33
cancelable := true
44

core-4.5.16.pom

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>org.web3j</groupId>
6+
<artifactId>core</artifactId>
7+
<version>4.5.16</version>
8+
<name>web3j</name>
9+
<description>web3j is a lightweight Java library for integration with Ethereum clients</description>
10+
<url>https://web3j.io</url>
11+
<licenses>
12+
<license>
13+
<name>The Apache License, Version 2.0</name>
14+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15+
</license>
16+
</licenses>
17+
<developers>
18+
<developer>
19+
<id>conor10</id>
20+
<name>Conor Svensson</name>
21+
<email>[email protected]</email>
22+
</developer>
23+
<developer>
24+
<id>antonydenyer</id>
25+
<name>Antony Denyer</name>
26+
<email>[email protected]</email>
27+
</developer>
28+
</developers>
29+
<scm>
30+
<connection>scm:https://github.com/web3j/web3j.git</connection>
31+
<developerConnection>scm:git://github.com/web3j/web3j.git</developerConnection>
32+
<url>https://github.com/web3j/web3j</url>
33+
</scm>
34+
<dependencies>
35+
<dependency>
36+
<groupId>org.web3j</groupId>
37+
<artifactId>abi</artifactId>
38+
<version>4.5.16</version>
39+
<scope>compile</scope>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.web3j</groupId>
43+
<artifactId>crypto</artifactId>
44+
<version>4.5.16</version>
45+
<scope>compile</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.web3j</groupId>
49+
<artifactId>tuples</artifactId>
50+
<version>4.5.16</version>
51+
<scope>compile</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>com.github.jnr</groupId>
55+
<artifactId>jnr-unixsocket</artifactId>
56+
<version>0.21</version>
57+
<scope>compile</scope>
58+
</dependency>
59+
<dependency>
60+
<groupId>com.squareup.okhttp3</groupId>
61+
<artifactId>okhttp</artifactId>
62+
<version>4.3.1</version>
63+
<scope>compile</scope>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.squareup.okhttp3</groupId>
67+
<artifactId>logging-interceptor</artifactId>
68+
<version>4.3.1</version>
69+
<scope>compile</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>io.reactivex.rxjava2</groupId>
73+
<artifactId>rxjava</artifactId>
74+
<version>2.2.2</version>
75+
<scope>compile</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.java-websocket</groupId>
79+
<artifactId>Java-WebSocket</artifactId>
80+
<version>1.3.8</version>
81+
<scope>compile</scope>
82+
</dependency>
83+
<dependency>
84+
<groupId>com.fasterxml.jackson.core</groupId>
85+
<artifactId>jackson-databind</artifactId>
86+
<version>2.8.5</version>
87+
<scope>compile</scope>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.slf4j</groupId>
91+
<artifactId>slf4j-api</artifactId>
92+
<version>1.7.25</version>
93+
<scope>compile</scope>
94+
</dependency>
95+
</dependencies>
96+
</project>

0 commit comments

Comments
 (0)