Fixed Maven and version bump

This commit is contained in:
Natty 2022-04-06 14:29:35 +02:00
parent 5a0311ac74
commit 1dd7059b9c
No known key found for this signature in database
GPG Key ID: 40AB22FA416C7019
5 changed files with 17 additions and 7 deletions

View File

@ -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
* Full rewrite
* High quality font rendering
@ -7,7 +7,7 @@
* 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
## Features targeted for 22.0.1.0-alpha.1
## Features targeted for 22.0.0.0-alpha.2
* The stage subsystem
* A "stage", in this context, is a set of assets bound together
by programming logic, not necessarily a game level.

View File

@ -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
* `[SDK]` Restructured the repository
* All build scripts are now written in Kotlin

View File

@ -1,11 +1,16 @@
import org.plutoengine.Versions
tasks.withType<Wrapper> {
distributionType = Wrapper.DistributionType.ALL
gradleVersion = "7.4.2"
}
subprojects {
group = "cz.tefek"
allprojects {
group = "org.plutoengine"
version = Versions.versionFull
}
subprojects {
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}

View File

@ -15,14 +15,14 @@ object Versions {
const val steamworks4jVersion = "1.8.0"
const val steamworks4jServerVersion = "1.8.0"
const val versionYear = 20
const val versionMajor = 2
const val versionYear = 22
const val versionMajor = 0
const val versionMinor = 0
const val versionPatch = 0
const val isPrerelease = true
const val prereleaseName = "alpha"
const val prerealeaseUpdate = 3
const val prerealeaseUpdate = 0
val versionFull =
if (isPrerelease)

View File

@ -16,6 +16,7 @@ task("publish") {
dependsOn(":plutoengine:plutocore:publish")
}
subprojects {
apply(plugin = "java")
apply(plugin = "java-library")