Skip to content

Commit

Permalink
Disable publishing to Gradle Portal on project and settings projects
Browse files Browse the repository at this point in the history
  • Loading branch information
JavierSegoviaCordoba committed Oct 9, 2024
1 parent e5eb99b commit dd3ba68
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion semver-project-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ hubdle {
api()
}
explicitApi()
publishing()
publishing {
gradlePortal { //
isEnabled = false
}
}
}
kotlin {
jvm {
Expand Down
6 changes: 5 additions & 1 deletion semver-settings-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ hubdle {
api()
}
explicitApi()
publishing()
publishing {
gradlePortal { //
isEnabled = false
}
}
}
kotlin {
jvm {
Expand Down

0 comments on commit dd3ba68

Please sign in to comment.