Skip to content

Commit

Permalink
disable module metadata generation
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeWang1127 committed Jan 26, 2024
1 parent f45f478 commit 44e4b85
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ group = "com.google.cloud.tools"
version = "2.7.1-SNAPSHOT" // {x-version-update:app-gradle-plugin:current}

plugins {
id("java-library")
id("java")
id("maven")
id("java-gradle-plugin")
id("net.researchgate.release") version "2.6.0"
Expand Down Expand Up @@ -145,6 +145,10 @@ release {
// see https://github.com/gradle/gradle/issues/10384 for more info.
gradlePlugin { isAutomatedPublishing = false }

tasks.withType<GenerateModuleMetadata> {
enabled = false
}

publishing {
publications {
create<MavenPublication>("mavenJava") {
Expand Down

0 comments on commit 44e4b85

Please sign in to comment.