release: bump version to 0.1.0
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = findProperty("libGroup") as String? ?: "com.mythlane"
|
group = findProperty("libGroup") as String? ?: "com.mythlane"
|
||||||
version = findProperty("libVersion") as String? ?: "0.1.0-SNAPSHOT"
|
version = findProperty("libVersion") as String? ?: "0.1.0"
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
group = rootProject.group
|
group = rootProject.group
|
||||||
|
|||||||
+1
-1
@@ -35,7 +35,7 @@ includeBuild("../..") {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
So `implementation("com.mythlane:async:0.1.0-SNAPSHOT")` resolves to the
|
So `implementation("com.mythlane:async:0.1.0")` resolves to the
|
||||||
local `:dist` project — no Maven publication required during dev.
|
local `:dist` project — no Maven publication required during dev.
|
||||||
|
|
||||||
## What's stubbed
|
## What's stubbed
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ val hytaleServerVersion = libs.versions.hytaleServer.get()
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly(libs.hytale.server)
|
compileOnly(libs.hytale.server)
|
||||||
implementation("com.mythlane:async:0.1.0-SNAPSHOT")
|
implementation("com.mythlane:async:0.1.0")
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ val hytaleServerVersion = libs.versions.hytaleServer.get()
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly(libs.hytale.server)
|
compileOnly(libs.hytale.server)
|
||||||
implementation("com.mythlane:async:0.1.0-SNAPSHOT")
|
implementation("com.mythlane:async:0.1.0")
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ val hytaleServerVersion = libs.versions.hytaleServer.get()
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly(libs.hytale.server)
|
compileOnly(libs.hytale.server)
|
||||||
implementation("com.mythlane:async:0.1.0-SNAPSHOT")
|
implementation("com.mythlane:async:0.1.0")
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ val hytaleServerVersion = libs.versions.hytaleServer.get()
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly(libs.hytale.server)
|
compileOnly(libs.hytale.server)
|
||||||
implementation("com.mythlane:async:0.1.0-SNAPSHOT")
|
implementation("com.mythlane:async:0.1.0")
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
libGroup=com.mythlane
|
libGroup=com.mythlane
|
||||||
libVersion=0.1.0-SNAPSHOT
|
libVersion=0.1.0
|
||||||
|
|
||||||
org.gradle.jvmargs=-Xmx2048m
|
org.gradle.jvmargs=-Xmx2048m
|
||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
|
|||||||
Reference in New Issue
Block a user