Skip to content

Commit

Permalink
Provide basic information in POM (#156)
Browse files Browse the repository at this point in the history
This makes sure the license shows up when you generate the SBOM.
  • Loading branch information
wjglerum authored Apr 11, 2024
1 parent dae2796 commit ba7f83e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,20 @@ publishing {
fromResolutionResult()
}
}
pom {
url.set("https://github.com/mbeddr/mps-gradle-plugin")
licenses {
license {
name.set("The Apache License, Version 2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
scm {
connection.set("scm:git:git://github.com/mbeddr/mps-gradle-plugin.git")
developerConnection.set("scm:git:ssh://github.com/mbeddr/mps-gradle-plugin.git")
url.set("https://github.com/mbeddr/mps-gradle-plugin")
}
}
}
}

Expand Down

0 comments on commit ba7f83e

Please sign in to comment.