Skip to content

Commit

Permalink
Configure tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
magx2 committed Oct 27, 2024
1 parent 72e9e30 commit 49c9bfc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -159,21 +159,21 @@ prodProjects {
artifact tasks.sourcesJar

pom {
name.set(project.name)
description.set(project.description)
name = project.name
description = project.description
// packaging = 'jar'
url.set("https://github.com/${githubRepo}")
url = "https://github.com/${githubRepo}"

scm {
connection.set("scm:git:git://github.com/${githubRepo}.git")
developerConnection.set("scm:git:git://github.com/${githubRepo}.git")
url.set("https://github.com/${githubRepo}.git")
connection = "scm:git:git://github.com/${githubRepo}.git"
developerConnection = "scm:git:git://github.com/${githubRepo}.git"
url = "https://github.com/${githubRepo}.git"
}

licenses {
license {
name.set("MIT")
url.set("https://opensource.org/licenses/MIT")
name = "MIT"
url = "https://opensource.org/licenses/MIT"
}
}

Expand Down

0 comments on commit 49c9bfc

Please sign in to comment.