Skip to content

Commit

Permalink
cleanuo dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsobries committed Nov 18, 2024
1 parent 0fe024e commit 031965d
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ group = 'org.arkecosystem'
version = '2.0.0'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
withJavadocJar()
withSourcesJar()
}
Expand All @@ -22,15 +22,13 @@ repositories {
}

dependencies {
implementation 'org.web3j:core:4.8.7'
// Core dependencies
implementation 'org.bitcoinj:bitcoinj-core:0.16.3'
implementation files('libs/secp256k1-api-0.0.1.jar')
implementation files('libs/secp256k1-foreign-0.0.1.jar')
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
implementation 'org.web3j:core:4.8.7'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.google.guava:guava:30.2.0-jre'

testImplementation 'org.slf4j:slf4j-api:2.0.13'
testRuntimeOnly 'org.slf4j:slf4j-simple:2.0.13'
// Test dependencies
testImplementation 'org.hamcrest:hamcrest-library:3.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.3'
Expand All @@ -42,7 +40,6 @@ test {
useJUnitPlatform()
testLogging {
events 'PASSED', 'FAILED', 'SKIPPED'
showStandardStreams = true
}
}

Expand Down

0 comments on commit 031965d

Please sign in to comment.