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 b69d0bd + 767b38f commit a144134Copy full SHA for a144134
developer-plugin/src/main/kotlin/com/github/minigdx/gradle/plugin/MiniGdxDeveloperPlugin.kt
@@ -72,7 +72,9 @@ class MiniGdxDeveloperPlugin : Plugin<Project> {
72
project.extensions.configure(PublishingExtension::class.java) {
73
// Configure publication (what to publish)
74
it.publications.withType(MavenPublication::class.java).configureEach {
75
- it.artifact(project.tasks.getByName("javadocJar"))
+ if(it.name != "pluginMaven") {
76
+ it.artifact(project.tasks.getByName("javadocJar"))
77
+ }
78
79
it.pom {
80
it.name.set(ext.name)
0 commit comments