Skip to content

Commit 991f692

Browse files
chore: upgrade libraries (#170)
1 parent e903bb1 commit 991f692

2 files changed

Lines changed: 11 additions & 10 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
strategy:
4343
matrix:
44-
# test against latest update of each major Java version, as well as specific updates of LTS versions:
44+
# test against the latest update of each major Java version, as well as specific updates of LTS versions:
4545
java: [ 8, 11, 15, 16 ]
4646

4747
steps:

build.gradle

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,21 @@ sourceCompatibility = 1.8
1313
targetCompatibility = 1.8
1414

1515
repositories {
16+
mavenLocal()
1617
mavenCentral()
1718
}
1819

1920
dependencies {
2021
implementation group: 'org.bitcoinj', name: 'bitcoinj-core', version: '0.15.8'
2122
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
22-
implementation 'com.google.guava:guava:29.0-jre'
23-
24-
testCompileOnly "org.slf4j:slf4j-api:1.7.30"
25-
testRuntimeOnly "org.slf4j:slf4j-simple:1.7.30"
26-
testImplementation 'org.hamcrest:hamcrest-library:2.1'
27-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
28-
testCompileOnly 'org.junit.jupiter:junit-jupiter-params:5.7.0'
29-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
23+
implementation 'com.google.guava:guava:30.1.1-jre'
24+
25+
testCompileOnly 'org.slf4j:slf4j-api:1.7.32'
26+
testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.32'
27+
testImplementation 'org.hamcrest:hamcrest-library:2.2'
28+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
29+
testCompileOnly 'org.junit.jupiter:junit-jupiter-params:5.7.2'
30+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
3031
}
3132

3233
task javadocJar(type: Jar) {
@@ -144,7 +145,7 @@ task writeNewPom {
144145
scm {
145146
connection = 'scm:git:git://github.com/ArkEcosystem/java-crypto.git'
146147
developerConnection = 'scm:git:ssh://github.com:ArkEcosystem/java-crypto.git'
147-
url = 'https://github.com/ArkEcosystem/java-crypto/tree/1.2.8'
148+
url = 'https://github.com/ArkEcosystem/java-crypto'
148149
}
149150
}.writeTo("$buildDir/newpom.xml")
150151
}

0 commit comments

Comments
 (0)