Fixed Maven and version bump
This commit is contained in:
parent
5a0311ac74
commit
1dd7059b9c
|
@ -1,4 +1,4 @@
|
||||||
## Features targeted for 22.0.1.0-alpha.0
|
## Features targeted for 22.0.0.0-alpha.1
|
||||||
* `[PlutoGUI]` Initial implementation of the new font renderer
|
* `[PlutoGUI]` Initial implementation of the new font renderer
|
||||||
* Full rewrite
|
* Full rewrite
|
||||||
* High quality font rendering
|
* High quality font rendering
|
||||||
|
@ -7,7 +7,7 @@
|
||||||
* Improve upon the support of thread-local Pluto instances
|
* Improve upon the support of thread-local Pluto instances
|
||||||
* The long term goal is to allow an unlimited amount of Pluto applications at any given time
|
* The long term goal is to allow an unlimited amount of Pluto applications at any given time
|
||||||
|
|
||||||
## Features targeted for 22.0.1.0-alpha.1
|
## Features targeted for 22.0.0.0-alpha.2
|
||||||
* The stage subsystem
|
* The stage subsystem
|
||||||
* A "stage", in this context, is a set of assets bound together
|
* A "stage", in this context, is a set of assets bound together
|
||||||
by programming logic, not necessarily a game level.
|
by programming logic, not necessarily a game level.
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
## 22.2.0.0-alpha.0
|
||||||
|
* Version bumped to 2022
|
||||||
|
* `[SDK]` Maven version is now properly set again
|
||||||
|
|
||||||
## 20.2.0.0-alpha.3
|
## 20.2.0.0-alpha.3
|
||||||
* `[SDK]` Restructured the repository
|
* `[SDK]` Restructured the repository
|
||||||
* All build scripts are now written in Kotlin
|
* All build scripts are now written in Kotlin
|
||||||
|
|
|
@ -1,11 +1,16 @@
|
||||||
|
import org.plutoengine.Versions
|
||||||
|
|
||||||
tasks.withType<Wrapper> {
|
tasks.withType<Wrapper> {
|
||||||
distributionType = Wrapper.DistributionType.ALL
|
distributionType = Wrapper.DistributionType.ALL
|
||||||
gradleVersion = "7.4.2"
|
gradleVersion = "7.4.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
subprojects {
|
allprojects {
|
||||||
group = "cz.tefek"
|
group = "org.plutoengine"
|
||||||
|
version = Versions.versionFull
|
||||||
|
}
|
||||||
|
|
||||||
|
subprojects {
|
||||||
tasks.withType<JavaCompile> {
|
tasks.withType<JavaCompile> {
|
||||||
options.encoding = "UTF-8"
|
options.encoding = "UTF-8"
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,14 +15,14 @@ object Versions {
|
||||||
const val steamworks4jVersion = "1.8.0"
|
const val steamworks4jVersion = "1.8.0"
|
||||||
const val steamworks4jServerVersion = "1.8.0"
|
const val steamworks4jServerVersion = "1.8.0"
|
||||||
|
|
||||||
const val versionYear = 20
|
const val versionYear = 22
|
||||||
const val versionMajor = 2
|
const val versionMajor = 0
|
||||||
const val versionMinor = 0
|
const val versionMinor = 0
|
||||||
const val versionPatch = 0
|
const val versionPatch = 0
|
||||||
|
|
||||||
const val isPrerelease = true
|
const val isPrerelease = true
|
||||||
const val prereleaseName = "alpha"
|
const val prereleaseName = "alpha"
|
||||||
const val prerealeaseUpdate = 3
|
const val prerealeaseUpdate = 0
|
||||||
|
|
||||||
val versionFull =
|
val versionFull =
|
||||||
if (isPrerelease)
|
if (isPrerelease)
|
||||||
|
|
|
@ -16,6 +16,7 @@ task("publish") {
|
||||||
dependsOn(":plutoengine:plutocore:publish")
|
dependsOn(":plutoengine:plutocore:publish")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
apply(plugin = "java")
|
apply(plugin = "java")
|
||||||
apply(plugin = "java-library")
|
apply(plugin = "java-library")
|
||||||
|
|
Loading…
Reference in New Issue