Alpha 1.0 RC02

Changelog:
  - Some visibility changes (Developers)
  - Added the Luck command.
  - Added some extra backend shortcuts
This commit is contained in:
Paldiu
2022-03-31 19:30:10 -05:00
parent 73affcf4c4
commit 93ee1e2c43
17 changed files with 221 additions and 9 deletions

View File

@ -3,7 +3,7 @@ plugins {
}
group = 'io.github.simplex'
version = '1.0-SNAPSHOT'
version = '1.0-RC02'
repositories {
mavenCentral()
@ -29,6 +29,9 @@ java {
if (JavaVersion.current() < javaVersion) {
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
}
withSourcesJar();
withJavadocJar();
}
tasks.withType(JavaCompile).configureEach {