File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1+ ## v0.2.1 - Snapshot
2+ * Removed bundled kotlin
3+ * Added blossom settings
4+
15## v0.2.0 - Snapshot
26* Added to sonatype
37* Updated Dependencies
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ val env = project.rootProject.file(".env").let { file ->
1515 if (file.exists()) file.readLines().filter { it.isNotBlank() && ! it.startsWith(" #" ) && it.split(" =" ).size == 2 }.associate { it.split(" =" )[0 ] to it.split(" =" )[1 ] } else emptyMap()
1616}.toMutableMap().apply { putAll(System .getenv()) }
1717
18- val projectVersion = env[" VERSION" ] ? : " 0.2.0 -SNAPSHOT"
18+ val projectVersion = env[" VERSION" ] ? : " 0.2.1 -SNAPSHOT"
1919
2020group = " xyz.theprogramsrc"
2121version = projectVersion
@@ -40,6 +40,14 @@ dependencies {
4040 testImplementation(" org.junit.jupiter:junit-jupiter:5.9.2" )
4141}
4242
43+ blossom {
44+ replaceToken(" @name@" , rootProject.name)
45+ replaceToken(" @version@" , project.version.toString())
46+ replaceToken(" @description@" , project.description)
47+ replaceToken(" @git_short@" , env[" GIT_COMMIT_SHORT_HASH" ] ? : " unknown" )
48+ replaceToken(" @git_full@" , env[" GIT_COMMIT_LONG_HASH" ] ? : " unknown" )
49+ }
50+
4351
4452tasks {
4553 named<ShadowJar >(" shadowJar" ) {
@@ -49,6 +57,7 @@ tasks {
4957 mergeServiceFiles()
5058 exclude(" **/*.kotlin_metadata" )
5159 exclude(" **/*.kotlin_builtins" )
60+ exclude(" kotlin/**" )
5261
5362 archiveBaseName.set(" FilesModule" )
5463 archiveClassifier.set(" " )
You can’t perform that action at this time.
0 commit comments