Skip to content

Commit

Permalink
Fix POM file for gradle plugin marker
Browse files Browse the repository at this point in the history
  • Loading branch information
StefMa committed Dec 19, 2023
1 parent d3722c1 commit 43ef30e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ gradlePlugin {
register("com.ioki.lokalise") {
id = "com.ioki.lokalise"
implementationClass = "com.ioki.lokalise.gradle.plugin.LokaliseGradlePlugin"
displayName = "LokaliseGradlePlugin"
description = "A Gradle plugin that can up- and download strings from lokalise"
}
}
}
Expand All @@ -36,6 +38,8 @@ publishing {
publications {
register("pluginMaven", MavenPublication::class.java) {
artifactId = "lokalise-gradle-plugin"
}
withType<MavenPublication>().configureEach {
pom {
name.set("LokaliseGradlePlugin")
description.set("A Gradle plugin that can up- and download strings from lokalise")
Expand Down

0 comments on commit 43ef30e

Please sign in to comment.