Skip to content

Commit

Permalink
build: Minor build script updates
Browse files Browse the repository at this point in the history
Signed-off-by: BJ Hargrave <[email protected]>
  • Loading branch information
bjhargrave committed Aug 14, 2024
1 parent 2ef2585 commit f0686ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ publishing {
}}Publication") {
description = "Generates the Maven pom.properties file for publication '${publication.name}'."
group = PublishingPlugin.PUBLISH_TASK_GROUP
getDestinationFile().value(layout.buildDirectory.file("publications/${publication.name}/pom-default.properties"))
destinationFile.value(layout.buildDirectory.file("publications/${publication.name}/pom-default.properties"))
property("groupId", provider { publication.groupId })
property("artifactId", provider { publication.artifactId })
property("version", provider { publication.version })
Expand All @@ -125,7 +125,7 @@ publishing {
url.set("https://github.com/bjhargrave/add-maven-descriptor")
connection.set("scm:git:https://github.com/bjhargrave/add-maven-descriptor.git")
developerConnection.set("scm:git:[email protected]:bjhargrave/add-maven-descriptor.git")
tag.set(version.toString())
tag.set(version)
}
developers {
developer {
Expand Down

0 comments on commit f0686ea

Please sign in to comment.