Skip to content

Commit 119a879

Browse files
authored
[build] explicitly disable maven-publish tasks for gradle plugin (#696)
1 parent 29bd599 commit 119a879

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

plugins/graphql-kotlin-gradle-plugin/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ tasks {
4848
publish {
4949
dependsOn(":graphql-kotlin-gradle-plugin:publishPlugins")
5050
}
51+
withType<PublishToMavenRepository> {
52+
// explicitly disable maven-publish tasks
53+
enabled = false
54+
}
5155
test {
5256
systemProperty("graphQLKotlinVersion", project.version)
5357
systemProperty("kotlinVersion", kotlinVersion)

0 commit comments

Comments
 (0)