Skip to content

Commit

Permalink
Bump gradle and guava version
Browse files Browse the repository at this point in the history
  • Loading branch information
toktarev committed Feb 18, 2020
1 parent 53356ac commit 0e4956e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ apply plugin: 'java'
apply plugin: 'idea'
apply plugin: "maven"

task wrapper(type: Wrapper) {
gradleVersion = '2.0'
distributionUrl = "http://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
tasks.create(name: 'wrapper_task' ,type: Wrapper) {
gradleVersion = '6.0.1'
distributionUrl = "https://services.gradle.org/distributions/gradle-6.0.1-all.zip"
}

allprojects {
group = "com.complexible.airline"
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
version = "0.7.6"
version = "0.7.8"

repositories {
mavenCentral()
Expand All @@ -26,7 +26,7 @@ ext {

dependencies {
compile 'javax.inject:javax.inject:1'
compile "com.google.guava:guava:25.1-jre"
compile "com.google.guava:guava:27.0-jre"
compile 'com.google.code.findbugs:jsr305:3.0.0'

testCompile 'org.testng:testng:6.0.1'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-2.0-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip

0 comments on commit 0e4956e

Please sign in to comment.