Skip to content

Commit d3ff6cd

Browse files
update the gradle plugin for bintray. The old plugin failed when we upgraded to gradle 6.5 (#404)
1 parent 02471e3 commit d3ff6cd

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

build.gradle

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
1-
buildscript {
2-
repositories {
3-
jcenter()
4-
maven {
5-
url "https://oss.sonatype.org/content/repositories/snapshots/"
6-
}
7-
}
8-
9-
dependencies {
10-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
11-
}
12-
}
13-
141
plugins {
152
id 'com.github.kt3k.coveralls' version '2.8.2'
163
id 'jacoco'
174
id 'me.champeau.gradle.jmh' version '0.4.5'
185
id 'nebula.optional-base' version '3.2.0'
196
id 'com.github.hierynomus.license' version '0.15.0'
207
id 'com.github.spotbugs' version "4.5.0"
8+
id "com.jfrog.bintray" version "1.8.5"
219
}
2210

2311
allprojects {
@@ -65,12 +53,12 @@ subprojects {
6553
}
6654

6755
task sourcesJar(type: Jar, dependsOn: classes) {
68-
classifier = 'sources'
56+
archiveClassifier.set('sources')
6957
from sourceSets.main.allSource
7058
}
7159

7260
task javadocJar(type: Jar, dependsOn: javadoc) {
73-
classifier = 'javadoc'
61+
archiveClassifier.set('javadoc')
7462
from javadoc.destinationDir
7563
}
7664

0 commit comments

Comments
 (0)