Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit a0c3c5b

Browse files
committed
bump up sbt
1 parent 86d34d9 commit a0c3c5b

File tree

23 files changed

+30
-30
lines changed

23 files changed

+30
-30
lines changed

examples/mapreduce-bitcoinblock/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ dependencies {
8181
// hadoop lib for driver
8282
compileOnly("org.apache.hadoop:hadoop-client:3.3.0")
8383
// hadoop crypto ledger library
84-
implementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.1")
84+
implementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.2")
8585
// testing
8686

8787
// for testing we can only use 2.7.x, because higher versions of Hadoop have a bug in minidfs-cluster. Nevertheless, the library itself works also with higher Hadoop versions
@@ -91,7 +91,7 @@ dependencies {
9191
testImplementation group: 'org.jmockit', name: 'jmockit', version: '1.48'
9292
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
9393
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
94-
testIntegrationImplementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.1")
94+
testIntegrationImplementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.2")
9595
testIntegrationImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
9696
testIntegrationRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
9797
testIntegrationRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-console', version: '1.8.2'

examples/mapreduce-bitcointransaction/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ dependencies {
7878
// hadoop lib for driver
7979
compileOnly("org.apache.hadoop:hadoop-client:3.3.0")
8080
// hadoop crypto ledger library
81-
implementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.1")
81+
implementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.2")
8282
// testing
8383

8484
// for testing we can only use 2.7.x, because higher versions of Hadoop have a bug in minidfs-cluster. Nevertheless, the library itself works also with higher Hadoop versions
@@ -88,7 +88,7 @@ dependencies {
8888
testImplementation group: 'org.jmockit', name: 'jmockit', version: '1.48'
8989
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
9090
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
91-
testIntegrationImplementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.1")
91+
testIntegrationImplementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.2")
9292
testIntegrationImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
9393
testIntegrationRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
9494
testIntegrationRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-console', version: '1.8.2'

examples/mapreduce-ethereumblock/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ dependencies {
7171
// hadoop lib for driver
7272
compileOnly("org.apache.hadoop:hadoop-client:3.3.0")
7373
// hadoop crypto ledger library
74-
implementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.1")
74+
implementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.2")
7575
// testing
7676

7777
// for testing we can only use 2.7.x, because higher versions of Hadoop have a bug in minidfs-cluster. Nevertheless, the library itself works also with higher Hadoop versions
@@ -81,7 +81,7 @@ dependencies {
8181
testImplementation group: 'org.jmockit', name: 'jmockit', version: '1.48'
8282
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
8383
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
84-
testIntegrationImplementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.1")
84+
testIntegrationImplementation("com.github.zuinnote:hadoopcryptoledger-fileformat:1.3.2")
8585
testIntegrationImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.8.2'
8686
testIntegrationRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
8787
testIntegrationRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-console', version: '1.8.2'

examples/scala-flink-bitcoinblock/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ assemblyJarName in assembly := "example-hcl-flink-scala-bitcoinblock.jar"
2525
fork := true
2626

2727

28-
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-flinkdatasource" % "1.3.1" % "compile"
29-
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-fileformat" % "1.3.1" % "compile"
28+
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-flinkdatasource" % "1.3.2" % "compile"
29+
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-fileformat" % "1.3.2" % "compile"
3030
libraryDependencies += "org.apache.flink" %% "flink-scala" % "1.12.1" % "provided"
3131

3232

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.7
1+
sbt.version=1.5.8

examples/scala-flink-ethereumblock/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ fork := true
2727

2828

2929

30-
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-flinkdatasource" % "1.3.1" % "compile"
31-
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-fileformat" % "1.3.1" % "compile"
30+
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-flinkdatasource" % "1.3.2" % "compile"
31+
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-fileformat" % "1.3.2" % "compile"
3232
// needed for certain functionality related to Ethereum in EthereumUtil
3333
libraryDependencies += "org.bouncycastle" % "bcprov-ext-jdk15on" % "1.70" % "compile"
3434
libraryDependencies += "org.apache.flink" %% "flink-scala" % "1.12.1" % "provided"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.7
1+
sbt.version=1.5.8

examples/scala-spark-bitcoinblock/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fork := true
2626

2727

2828

29-
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-fileformat" % "1.3.1" % "compile"
29+
libraryDependencies += "com.github.zuinnote" % "hadoopcryptoledger-fileformat" % "1.3.2" % "compile"
3030

3131
libraryDependencies += "org.apache.spark" %% "spark-core" % "1.6.3" % "provided"
3232

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.7
1+
sbt.version=1.5.8

examples/scala-spark-datasource-bitcoinblock/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ assemblyMergeStrategy in assembly := {
3232
case x => MergeStrategy.first
3333
}
3434

35-
libraryDependencies += "com.github.zuinnote" %% "spark-hadoopcryptoledger-ds" % "1.3.1" % "compile"
35+
libraryDependencies += "com.github.zuinnote" %% "spark-hadoopcryptoledger-ds" % "1.3.2" % "compile"
3636

3737

3838

0 commit comments

Comments
 (0)