Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Aug 3, 2020
1 parent 09c85dc commit 0dfd47b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
apply plugin: 'maven'

group 'org.torusresearch'
version '1.0.0'
version '1.0.1'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand All @@ -16,14 +16,23 @@ repositories {
}

dependencies {
implementation 'org.torusresearch:fetch-node-details-java:d25e08c90c'
implementation 'org.torusresearch:fetch-node-details-java:1.0.7'
implementation 'org.web3j:core:4.6.0-android'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.squareup.okhttp3:okhttp:4.8.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
testImplementation 'org.slf4j:slf4j-simple:1.7.30'
}

test {
useJUnitPlatform()
}

// We don't want any compiler warnings
compileJava {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
compileTestJava {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}

0 comments on commit 0dfd47b

Please sign in to comment.