@@ -4,18 +4,18 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
44plugins {
55 `maven- publish`
66 id(" io.github.gradle-nexus.publish-plugin" ) version " 1.3.0"
7- id(" com.github.johnrengelman.shadow" ) version " 8.1.0 "
7+ id(" com.github.johnrengelman.shadow" ) version " 8.1.1 "
88 id(" cl.franciscosolis.blossom-extended" ) version " 1.3.1"
99
10- kotlin(" jvm" ) version " 1.8 .10"
11- id(" org.jetbrains.dokka" ) version " 1.8.10 "
10+ kotlin(" jvm" ) version " 1.9 .10"
11+ id(" org.jetbrains.dokka" ) version " 1.9.0 "
1212}
1313
1414val env = project.rootProject.file(" .env" ).let { file ->
1515 if (file.exists()) file.readLines().filter { it.isNotBlank() && ! it.startsWith(" #" ) && it.split(" =" ).size == 2 }.associate { it.split(" =" )[0 ] to it.split(" =" )[1 ] } else emptyMap()
1616}.toMutableMap().apply { putAll(System .getenv()) }
1717
18- val projectVersion = env[" VERSION" ] ? : " 0.2 .0-SNAPSHOT"
18+ val projectVersion = env[" VERSION" ] ? : " 0.3 .0-SNAPSHOT"
1919
2020group = " xyz.theprogramsrc"
2121version = projectVersion
@@ -26,19 +26,22 @@ repositories {
2626 mavenCentral()
2727
2828 maven(" https://s01.oss.sonatype.org/content/groups/public/" )
29+ maven(" https://oss.sonatype.org/content/repositories/snapshots/" )
30+ maven(" https://oss.sonatype.org/content/repositories/releases/" )
2931 maven(" https://oss.sonatype.org/content/groups/public/" )
3032 maven(" https://hub.spigotmc.org/nexus/content/repositories/snapshots/" )
33+ maven(" https://repo.papermc.io/repository/maven-public/" )
3134 maven(" https://repo.codemc.org/repository/maven-public/" )
3235 maven(" https://jitpack.io/" )
3336}
3437
3538dependencies {
36- compileOnly(" xyz.theprogramsrc:simplecoreapi:0.6.2 -SNAPSHOT" )
39+ compileOnly(" xyz.theprogramsrc:simplecoreapi:0.8.0 -SNAPSHOT" )
3740
38- compileOnly(" org.spigotmc:spigot-api:1.19.3 -R0.1-SNAPSHOT" )
39- compileOnly(" net.md-5:bungeecord-api:1.19 -R0.1 -SNAPSHOT" )
41+ compileOnly(" org.spigotmc:spigot-api:1.20.2 -R0.1-SNAPSHOT" )
42+ compileOnly(" net.md-5:bungeecord-api:1.20 -R0.2 -SNAPSHOT" )
4043
41- testImplementation(" org.junit.jupiter:junit-jupiter:5.9.2 " )
44+ testImplementation(" org.junit.jupiter:junit-jupiter:5.10.0 " )
4245}
4346
4447
0 commit comments