This commit is contained in:
parent
7cc2ab3e54
commit
e2adbc4070
3 changed files with 24 additions and 23 deletions
36
build.gradle
36
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 {
|
||||
|
|
|
@ -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
|
||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue