Skip to content

Commit

Permalink
Provide basic information in POM
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 committed Apr 11, 2024
1 parent dae2796 commit 0056519
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,22 @@ publishing {
fromResolutionResult()
}
}
pom {
name.set("mps-gradle-plugin")
description.set("Miscellaneous tasks that were found useful when building MPS-based projects with Gradle.")
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 0056519

Please sign in to comment.