File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-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
+ * Updated dependencies
5
+
1
6
## v0.2.0 - Snapshot
2
7
* Added to sonatype
3
8
* Updated Dependencies
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ val env = project.rootProject.file(".env").let { file ->
15
15
if (file.exists()) file.readLines().filter { it.isNotBlank() && ! it.startsWith(" #" ) && it.split(" =" ).size == 2 }.associate { it.split(" =" )[0 ] to it.split(" =" )[1 ] } else emptyMap()
16
16
}.toMutableMap().apply { putAll(System .getenv()) }
17
17
18
- val projectVersion = env[" VERSION" ] ? : " 0.2.0 -SNAPSHOT"
18
+ val projectVersion = env[" VERSION" ] ? : " 0.2.1 -SNAPSHOT"
19
19
20
20
group = " xyz.theprogramsrc"
21
21
version = projectVersion
@@ -40,6 +40,14 @@ dependencies {
40
40
testImplementation(" org.junit.jupiter:junit-jupiter:5.9.2" )
41
41
}
42
42
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
+
43
51
44
52
tasks {
45
53
named<ShadowJar >(" shadowJar" ) {
@@ -49,6 +57,7 @@ tasks {
49
57
mergeServiceFiles()
50
58
exclude(" **/*.kotlin_metadata" )
51
59
exclude(" **/*.kotlin_builtins" )
60
+ exclude(" kotlin/**" )
52
61
53
62
archiveBaseName.set(" FilesModule" )
54
63
archiveClassifier.set(" " )
You can’t perform that action at this time.
0 commit comments