Skip to content

Commit 2f6128f

Browse files
committed
4.5.8
1 parent b045a37 commit 2f6128f

File tree

4 files changed

+100
-4
lines changed

4 files changed

+100
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Add this to your SBT project's `build.sbt`:
1818

1919
resolvers += "micronautics/scala on bintray" at "http://dl.bintray.com/micronautics/scala"
2020

21-
libraryDependencies += "com.micronautics" %% "web3j-scala" % "4.5.5" withSources()
21+
libraryDependencies += "com.micronautics" %% "web3j-scala" % "4.5.8" withSources()
2222

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

bin/isWeb3jReady

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
VERSION="$( cat build.sbt | grep 'val web3jVersion =' | cut -d' ' -f 4 | tr -d '"' | tr -d "\r" )"
4-
wget --no-hsts https://repo1.maven.org/maven2/org/web3j/console/$VERSION/console-$VERSION.pom > /dev/null 2>&1
4+
wget --no-hsts https://repo1.maven.org/maven2/org/web3j/core/$VERSION/core-$VERSION.pom > /dev/null 2>&1
55
if [ $? -eq 0 ]; then
66
echo "Web3j v$VERSION is ready!!!"
77
else

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ organization := "com.micronautics"
22

33
name := "web3j-scala"
44

5-
version := "4.5.7"
5+
version := "4.5.8"
66

77
scalaVersion := "2.13.1"
88
//scalaVersion := "2.12.10"
@@ -64,7 +64,7 @@ resolvers ++= Seq(
6464
"bintray" at "https://bintray.com/web3j/maven/org.web3j"
6565
)
6666

67-
val web3jVersion = "4.5.7"
67+
val web3jVersion = "4.5.8"
6868
libraryDependencies ++= Seq(
6969
"org.scala-lang.modules" %% "scala-collection-compat" % "2.1.2" withSources(),
7070
// See https://docs.web3j.io/modules.html

core-4.5.8.pom

Lines changed: 96 additions & 0 deletions
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.8</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.8</version>
39+
<scope>compile</scope>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.web3j</groupId>
43+
<artifactId>crypto</artifactId>
44+
<version>4.5.8</version>
45+
<scope>compile</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.web3j</groupId>
49+
<artifactId>tuples</artifactId>
50+
<version>4.5.8</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>3.8.1</version>
63+
<scope>compile</scope>
64+
</dependency>
65+
<dependency>
66+
<groupId>com.squareup.okhttp3</groupId>
67+
<artifactId>logging-interceptor</artifactId>
68+
<version>3.8.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)