Skip to content

Commit

Permalink
Bumped gradle.build template version.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandrouR committed Dec 9, 2019
1 parent 4aef303 commit 7638c58
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/main/resources/build.gradle.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ sourceCompatibility = 1.8

repositories {
mavenCentral()
maven { url 'http://dl.bintray.com/web3j/maven' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url "https://dl.bintray.com/ethereum/maven" }
}

web3j {
Expand All @@ -23,19 +20,20 @@ web3j {
}

ext {

web3jVersion = '4.4.0'
web3jVersion = '4.5.10'
logbackVersion = '1.2.3'
junitVersion = '4.12'
}

dependencies {
implementation "org.web3j:core:$web3jVersion",
"ch.qos.logback:logback-core:$logbackVersion",
"ch.qos.logback:logback-classic:$logbackVersion"
implementation("org.web3j:web3j-unit:4.6.0-SNAPSHOT")
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
implementation("org.web3j:web3j-unit:$web3jVersion")
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
}

test {
useJUnitPlatform()
}

0 comments on commit 7638c58

Please sign in to comment.