diff --git a/build.gradle b/build.gradle index 0f749cf..d8ad378 100644 --- a/build.gradle +++ b/build.gradle @@ -5,8 +5,8 @@ plugins { repositories { ivy { - name "Cosmic Reach" - url "https://github.com/CRModders/CosmicArchive/raw/main/versions" + name = "Cosmic Reach" + url = "https://github.com/CRModders/CosmicArchive/raw/main/versions" patternLayout { artifact "[classifier]/[revision]/client/Cosmic-Reach-[revision].jar" } @@ -21,8 +21,8 @@ repositories { } ivy { - name "Cosmic Reach" - url "https://github.com/CRModders/CosmicArchive/raw/main/versions" + name = "Cosmic Reach" + url = "https://github.com/CRModders/CosmicArchive/raw/main/versions" patternLayout { artifact "[classifier]/[revision]/server/Cosmic-Reach-Server-[revision].jar" } @@ -38,28 +38,28 @@ repositories { maven { - name "crmReleases" - url "https://maven.crmodders.dev/releases" + name = "crmReleases" + url = "https://maven.crmodders.dev/releases" } maven { - name "crmReleases" - url "https://maven.crmodders.dev/snapshots" + name = "crmReleases" + url = "https://maven.crmodders.dev/snapshots" } maven { - name "JitPack" - url "https://jitpack.io" + name = "JitPack" + url = "https://jitpack.io" } maven { - name "Quilt" - url "https://maven.quiltmc.org/repository/release" + name = "Quilt" + url = "https://maven.quiltmc.org/repository/release" } maven { - name "Fabric" - url "https://maven.fabricmc.net/" + name = "Fabric" + url = "https://maven.fabricmc.net/" } maven { - name "Sponge" - url "https://repo.spongepowered.org/maven/" + name = "Sponge" + url = "https://repo.spongepowered.org/maven/" } mavenCentral() @@ -208,8 +208,8 @@ java { // withJavadocJar() // If docs are included with the project, this line can be un-commented // Sets the Java version - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 + sourceCompatibility = JavaVersion.VERSION_24 + targetCompatibility = JavaVersion.VERSION_24 } publishing { diff --git a/gradle.properties b/gradle.properties index 8e8a96d..0ab89ce 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,16 +4,17 @@ org.gradle.parallel=true org.gradle.caching=false # Project Info -version=1.0.11 +version=1.0.12 group=net.pietru id=cookie_utils # Dependency Versions cosmic_reach_rev=alpha -cosmic_reach_version=0.4.9 +cosmic_reach_version=0.4.11 # If unspecified, will use the version above -cosmic_reach_server_version=0.4.9 -cosmic_quilt_version=2.3.1 +cosmic_reach_server_version=0.4.11 +cosmic_quilt_version=7b04941cee +#2.3.1 #2.2.0 # modmenu_version=1.0.7 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 3fa8f86..ff23a68 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME