We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c0355f commit 7570ac4Copy full SHA for 7570ac4
build.gradle
@@ -72,6 +72,15 @@ dependencies {
72
// Maven packaging and signing
73
group = 'io.github.nsacyber.paccor'
74
version = '1.1.4r11'
75
+project.gradle.taskGraph.whenReady { graph ->
76
+ project.tasks.findAll().forEach { task ->
77
+ if (task.name.contains("signArchives") || task.name.contains("uploadArchives")) {
78
+ // If this is set to true, the signing and maven
79
+ // properties in gradle.properties must be set.
80
+ task.enabled = false
81
+ }
82
83
+}
84
task javadocJar(type: Jar) {
85
classifier = 'javadoc'
86
from javadoc
0 commit comments