Skip to content

Commit a120313

Browse files
committed
fix dependencies and sign archives
1 parent a1277bd commit a120313

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

build.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ artifacts {
5050
}
5151

5252
// Set the version for all Concourse dependencies
53-
ext.concourseVersion = '0.7.0-SNAPSHOT'
53+
ext.concourseVersion = '0.9.3'
5454

5555
repositories {
5656
mavenCentral()
@@ -69,10 +69,10 @@ repositories {
6969
}
7070

7171
dependencies {
72-
compile group: 'com.cinchapi', name: 'accent4j', version: '1.2.0-SNAPSHOT', changing:true
72+
compile group: 'com.cinchapi', name: 'accent4j', version: '1.2.0', changing:true
7373
compile group: 'com.cinchapi', name: 'concourse-driver-java', version: concourseVersion, changing:true // needed for util classes...
7474
compile group: 'com.google.code.findbugs', name: 'jsr305', version:'2.0.1'
75-
compile group: 'com.google.guava', name:'guava', version:'21.0'
75+
compile group: 'com.google.guava', name:'guava', version:'25.1-jre'
7676
testCompile 'junit:junit:4.11'
7777
}
7878

@@ -90,6 +90,11 @@ if (JavaVersion.current().isJava8Compatible()) {
9090
}
9191
}
9292

93+
signing {
94+
required { gradle.taskGraph.hasTask("uploadArchives") }
95+
sign configurations.archives
96+
}
97+
9398
uploadArchives {
9499
repositories {
95100
mavenDeployer {

0 commit comments

Comments
 (0)