Skip to content

Commit

Permalink
Add POM metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
tbroyer committed Aug 23, 2024
1 parent 0eb36e2 commit e207c4d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,33 @@ gradlePlugin {
}
}

publishing {
publications.withType<MavenPublication>().configureEach {
pom {
name.set("Adds NullAway DSL to Gradle Error Prone plugin")
description.set("Adds NullAway DSL to Gradle Error Prone plugin")
url.set("https://github.com/tbroyer/gradle-nullaway-plugin")
licenses {
license {
name.set("Apache-2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0")
}
}
developers {
developer {
name.set("Thomas Broyer")
email.set("[email protected]")
}
}
scm {
connection.set("https://github.com/tbroyer/gradle-nullaway-plugin.git")
developerConnection.set("scm:git:ssh://github.com:tbroyer/gradle-nullaway-plugin.git")
url.set("https://github.com/tbroyer/gradle-nullaway-plugin")
}
}
}
}

ktlint {
version.set("0.49.1")
outputToConsole.set(true)
Expand Down

0 comments on commit e207c4d

Please sign in to comment.