File tree Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Original file line number Diff line number Diff line change 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
-
14
1
plugins {
15
2
id ' com.github.kt3k.coveralls' version ' 2.8.2'
16
3
id ' jacoco'
17
4
id ' me.champeau.gradle.jmh' version ' 0.4.5'
18
5
id ' nebula.optional-base' version ' 3.2.0'
19
6
id ' com.github.hierynomus.license' version ' 0.15.0'
20
7
id ' com.github.spotbugs' version " 4.5.0"
8
+ id " com.jfrog.bintray" version " 1.8.5"
21
9
}
22
10
23
11
allprojects {
@@ -65,12 +53,12 @@ subprojects {
65
53
}
66
54
67
55
task sourcesJar(type : Jar , dependsOn : classes) {
68
- classifier = ' sources'
56
+ archiveClassifier . set( ' sources' )
69
57
from sourceSets. main. allSource
70
58
}
71
59
72
60
task javadocJar(type : Jar , dependsOn : javadoc) {
73
- classifier = ' javadoc'
61
+ archiveClassifier . set( ' javadoc' )
74
62
from javadoc. destinationDir
75
63
}
76
64
You can’t perform that action at this time.
0 commit comments