File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " groovy"
3
3
id " jacoco"
4
- id " com.github.kt3k.coveralls" version " 2.6.3 "
4
+ id " com.github.kt3k.coveralls" version " 2.11.0 "
5
5
6
6
id " java-gradle-plugin"
7
- id " io.freefair.maven-jars" version " 2.9.5" // <- can be replace with java { with*Jar() } since Gradle 6.0
8
7
9
8
id " maven"
10
9
id " maven-publish"
11
10
id " signing"
12
- id " com.gradle.plugin-publish" version " 0.10.1 "
13
- id " com.jfrog.bintray" version " 1.8.4 "
11
+ id " com.gradle.plugin-publish" version " 0.13.0 "
12
+ id " com.jfrog.bintray" version " 1.8.5 "
14
13
}
15
14
16
15
description = " Gradle plugin to find duplicate code using PMDs copy/paste detection (= CPD)"
@@ -52,7 +51,7 @@ dependencies {
52
51
}
53
52
54
53
javadoc {
55
- if (JavaVersion . current(). isJava9Compatible()) {
54
+ if (JavaVersion . current(). isJava9Compatible()) {
56
55
options. addBooleanOption(' html5' , true )
57
56
}
58
57
}
72
71
}
73
72
}
74
73
74
+ java {
75
+ withJavadocJar()
76
+ withSourcesJar()
77
+ }
78
+
75
79
test {
76
80
ignoreFailures = isBuildOnJenkins
77
81
You can’t perform that action at this time.
0 commit comments