add license, wiki, source and issue URLs to properties

This commit is contained in:
dfsek
2021-05-14 23:30:36 -07:00
parent 2c9d195474
commit 6fbb5d712e
5 changed files with 18 additions and 8 deletions
@@ -30,7 +30,11 @@ fun Project.configureCompilation() {
filter<org.apache.tools.ant.filters.ReplaceTokens>(
"tokens" to mapOf(
"VERSION" to project.version.toString(),
"DESCRIPTION" to project.properties["terra.description"]
"DESCRIPTION" to project.properties["terra.description"],
"WIKI" to project.properties["terra.wiki"],
"SOURCE" to project.properties["terra.source"],
"ISSUES" to project.properties["terra.issues"],
"LICENSE" to project.properties["terra.license"]
)
)
}