We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9dd66a commit c711c60Copy full SHA for c711c60
build-logic/src/main/kotlin/me.champeau.plugin-configuration.gradle.kts
@@ -61,6 +61,13 @@ tasks.jar {
61
}
62
63
64
+java {
65
+ sourceCompatibility = JavaVersion.VERSION_1_8
66
+ targetCompatibility = JavaVersion.VERSION_1_8
67
+ withSourcesJar()
68
+ withJavadocJar()
69
+}
70
+
71
gradlePlugin {
72
website = providers.gradleProperty("POM_URL")
73
vcsUrl = providers.gradleProperty("POM_URL")
build.gradle.kts
@@ -45,13 +45,6 @@ dependencies {
45
testImplementation("commons-io:commons-io:2.16.1")
46
47
48
-java {
49
- sourceCompatibility = JavaVersion.VERSION_1_8
50
- targetCompatibility = JavaVersion.VERSION_1_8
51
- withSourcesJar()
52
- withJavadocJar()
53
-}
54
-
55
jacoco {
56
toolVersion = "0.8.12"
57
0 commit comments