Skip to content

Commit 4739ff5

Browse files
committed
upgrade gradle plugins
Signed-off-by: Andreas Schmid <[email protected]>
1 parent 68b814c commit 4739ff5

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

build.gradle

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
plugins {
22
id "groovy"
33
id "jacoco"
4-
id "com.github.kt3k.coveralls" version "2.6.3"
4+
id "com.github.kt3k.coveralls" version "2.11.0"
55

66
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
87

98
id "maven"
109
id "maven-publish"
1110
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"
1413
}
1514

1615
description = "Gradle plugin to find duplicate code using PMDs copy/paste detection (= CPD)"
@@ -52,7 +51,7 @@ dependencies {
5251
}
5352

5453
javadoc {
55-
if(JavaVersion.current().isJava9Compatible()) {
54+
if (JavaVersion.current().isJava9Compatible()) {
5655
options.addBooleanOption('html5', true)
5756
}
5857
}
@@ -72,6 +71,11 @@ jar {
7271
}
7372
}
7473

74+
java {
75+
withJavadocJar()
76+
withSourcesJar()
77+
}
78+
7579
test {
7680
ignoreFailures = isBuildOnJenkins
7781

0 commit comments

Comments
 (0)