We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7049ed commit 0726965Copy full SHA for 0726965
2 files changed
build.gradle
@@ -7,7 +7,11 @@ plugins {
7
8
allprojects {
9
group = findProperty('group') as String
10
- version = findProperty('version') ?: findProperty('baseVersion')
+ if (hasProperty("version")) {
11
+ version = findProperty('version') as String
12
+ } else {
13
+ version = findProperty('baseVersion') as String
14
+ }
15
repositories {
16
mavenCentral()
17
}
gradle.properties
@@ -1,4 +1,4 @@
1
kotlin.code.style=official
2
group=io.github.eventhorizonlab
3
-baseVersion=0.1.18
+baseVersion=0.1.19
4
org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
0 commit comments