Skip to content

Commit

Permalink
Updated build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Dec 5, 2024
1 parent be970bd commit fa6753c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 13 deletions.
8 changes: 5 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ allprojects {

repositories {
mavenCentral()

maven("https://repo.auxilor.io/repository/maven-public/")

maven("https://jitpack.io") {
content { includeGroupByRegex("com\\.github\\..*") }
}
Expand Down Expand Up @@ -179,14 +181,14 @@ allprojects {
}

withType<JavaCompile>().configureEach {
options.release = 17
options.release.set(17)
}
}

java {
withSourcesJar()
toolchain {
languageVersion = JavaLanguageVersion.of(21)
languageVersion.set(JavaLanguageVersion.of(21))
}
}
}
Expand Down Expand Up @@ -227,4 +229,4 @@ tasks {
}

group = "com.willfp"
version = findProperty("version")!!
version = findProperty("version")!!
2 changes: 1 addition & 1 deletion eco-core/core-backend-modern/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {

tasks {
compileJava {
options.release = 21
options.release.set(21)
}

compileKotlin {
Expand Down
2 changes: 1 addition & 1 deletion eco-core/core-backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {

tasks {
compileJava {
options.release = 17
options.release.set(17)
}

compileKotlin {
Expand Down
2 changes: 1 addition & 1 deletion eco-core/core-nms/modern/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {

tasks {
compileJava {
options.release = 21
options.release.set(21)
}

compileKotlin {
Expand Down
2 changes: 1 addition & 1 deletion eco-core/core-nms/v1_21/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tasks {
}

compileJava {
options.release = 21
options.release.set(21)
}

compileKotlin {
Expand Down
2 changes: 1 addition & 1 deletion eco-core/core-nms/v1_21_3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tasks {
}

compileJava {
options.release = 21
options.release.set(21)
}

compileKotlin {
Expand Down
5 changes: 2 additions & 3 deletions eco-core/core-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,11 @@ dependencies {
compileOnly("com.github.EssentialsX:Essentials:2.18.2")
compileOnly("com.bgsoftware:SuperiorSkyblockAPI:1.8.3")
compileOnly("com.github.MilkBowl:VaultAPI:1.7")
compileOnly("com.github.WhipDevelopment:CrashClaim:f9cd7d92eb")
compileOnly("com.github.WhipDevelopment:CrashClaim:c697d3e9ef")
compileOnly("com.github.decentsoftware-eu:decentholograms:2.8.5")
compileOnly("com.github.Gypopo:EconomyShopGUI-API:1.4.6")
compileOnly("com.github.N0RSKA:ScytherAPI:55a")
compileOnly("org.black_ixx:playerpoints:3.2.5")
compileOnly("com.github.Ssomar-Developement:SCore:3.4.7")
compileOnly("io.lumine:Mythic:5.3.5")
compileOnly("io.lumine:LumineUtils:1.19-SNAPSHOT")
compileOnly("com.SirBlobman.combatlogx:CombatLogX-API:10.0.0.0-SNAPSHOT")
Expand All @@ -61,7 +60,7 @@ dependencies {
compileOnly("net.william278.huskclaims:huskclaims-bukkit:1.0.1")
compileOnly("net.william278:husktowns:2.6.1")
compileOnly("com.github.jojodmo:ItemBridge:b0054538c1")
compileOnly("de.oliver:FancyHolograms:2.3.0")
compileOnly("de.oliver:FancyHolograms:2.4.0")

compileOnly(fileTree("../../lib") {
include("*.jar")
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 6.74.3
kotlin.incremental.useClasspathSnapshot=false
version = 6.74.4
kotlin.incremental.useClasspathSnapshot=false
Binary file added lib/SCore-5.24.12.3.jar
Binary file not shown.

0 comments on commit fa6753c

Please sign in to comment.