Skip to content

Commit

Permalink
Fix typo pom.xm -> pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
chlorochrule committed Jul 17, 2024
1 parent 2c7701c commit 51fd999
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion launchers/catalog-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ application {
}

tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
exclude("**/pom.properties", "**/pom.xm")
exclude("**/pom.properties", "**/pom.xml")
mergeServiceFiles()
archiveFileName.set("catalog-server.jar")
}
Expand Down
2 changes: 1 addition & 1 deletion launchers/controlplane/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies {
}

tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
exclude("**/pom.properties", "**/pom.xm")
exclude("**/pom.properties", "**/pom.xml")
mergeServiceFiles()
archiveFileName.set("${project.name}.jar")
}
Expand Down
2 changes: 1 addition & 1 deletion launchers/dataplane/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
}

tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
exclude("**/pom.properties", "**/pom.xm")
exclude("**/pom.properties", "**/pom.xml")
mergeServiceFiles()
archiveFileName.set("${project.name}.jar")
}
Expand Down
2 changes: 1 addition & 1 deletion launchers/identity-hub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ application {
}

tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
exclude("**/pom.properties", "**/pom.xm")
exclude("**/pom.properties", "**/pom.xml")
mergeServiceFiles()
archiveFileName.set("identity-hub.jar")
}
Expand Down
2 changes: 1 addition & 1 deletion launchers/runtime-embedded/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
}

tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
exclude("**/pom.properties", "**/pom.xm")
exclude("**/pom.properties", "**/pom.xml")
mergeServiceFiles()
archiveFileName.set("${project.name}.jar")
}
Expand Down

0 comments on commit 51fd999

Please sign in to comment.