Fix publishing related issues in jakarta artifacts

This commit is contained in:
Christian Beikov 2021-05-06 07:16:32 +02:00
parent 129484557b
commit 225429a4cf
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ apply from: rootProject.file( 'gradle/published-java-module.gradle' )
tasks.withType(PublishToMavenRepository) { tasks.withType(PublishToMavenRepository) {
onlyIf { onlyIf {
repository == publishing.repositories.mavenLocal repository.name == "MavenLocal"
} }
} }

View File

@ -11,7 +11,7 @@ apply from: rootProject.file( 'gradle/published-java-module.gradle' )
tasks.withType(PublishToMavenRepository) { tasks.withType(PublishToMavenRepository) {
onlyIf { onlyIf {
repository == publishing.repositories.mavenLocal repository.name == "MavenLocal"
} }
} }

View File

@ -11,7 +11,7 @@ apply from: rootProject.file( 'gradle/published-java-module.gradle' )
tasks.withType(PublishToMavenRepository) { tasks.withType(PublishToMavenRepository) {
onlyIf { onlyIf {
repository == publishing.repositories.mavenLocal repository.name == "MavenLocal"
} }
} }