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.
2 parents 52091c8 + 7630c6a commit a86ca68Copy full SHA for a86ca68
build.gradle
@@ -21,7 +21,7 @@ sourceCompatibility = 1.8
21
targetCompatibility = 1.8
22
23
group = "org.embulk"
24
-version = "0.4.0-SNAPSHOT"
+version = "0.4.1-SNAPSHOT"
25
description = "Reads files stored on Google Cloud Storage."
26
27
tasks.withType(JavaCompile) {
@@ -133,6 +133,12 @@ javadocJar {
133
from rootProject.file("NOTICE")
134
}
135
136
+// It should not publish a `.module` file in Maven Central.
137
+// https://docs.gradle.org/current/userguide/publishing_gradle_module_metadata.html#sub:disabling-gmm-publication
138
+tasks.withType(GenerateModuleMetadata) {
139
+ enabled = false
140
+}
141
+
142
publishing {
143
publications {
144
maven(MavenPublication) {
0 commit comments