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 {
|
repositories {
|
||||||
ivy {
|
ivy {
|
||||||
name "Cosmic Reach"
|
name = "Cosmic Reach"
|
||||||
url "https://github.com/CRModders/CosmicArchive/raw/main/versions"
|
url = "https://github.com/CRModders/CosmicArchive/raw/main/versions"
|
||||||
patternLayout {
|
patternLayout {
|
||||||
artifact "[classifier]/[revision]/client/Cosmic-Reach-[revision].jar"
|
artifact "[classifier]/[revision]/client/Cosmic-Reach-[revision].jar"
|
||||||
}
|
}
|
||||||
|
@ -21,8 +21,8 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
ivy {
|
ivy {
|
||||||
name "Cosmic Reach"
|
name = "Cosmic Reach"
|
||||||
url "https://github.com/CRModders/CosmicArchive/raw/main/versions"
|
url = "https://github.com/CRModders/CosmicArchive/raw/main/versions"
|
||||||
patternLayout {
|
patternLayout {
|
||||||
artifact "[classifier]/[revision]/server/Cosmic-Reach-Server-[revision].jar"
|
artifact "[classifier]/[revision]/server/Cosmic-Reach-Server-[revision].jar"
|
||||||
}
|
}
|
||||||
|
@ -38,28 +38,28 @@ repositories {
|
||||||
|
|
||||||
|
|
||||||
maven {
|
maven {
|
||||||
name "crmReleases"
|
name = "crmReleases"
|
||||||
url "https://maven.crmodders.dev/releases"
|
url = "https://maven.crmodders.dev/releases"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name "crmReleases"
|
name = "crmReleases"
|
||||||
url "https://maven.crmodders.dev/snapshots"
|
url = "https://maven.crmodders.dev/snapshots"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name "JitPack"
|
name = "JitPack"
|
||||||
url "https://jitpack.io"
|
url = "https://jitpack.io"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name "Quilt"
|
name = "Quilt"
|
||||||
url "https://maven.quiltmc.org/repository/release"
|
url = "https://maven.quiltmc.org/repository/release"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name "Fabric"
|
name = "Fabric"
|
||||||
url "https://maven.fabricmc.net/"
|
url = "https://maven.fabricmc.net/"
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name "Sponge"
|
name = "Sponge"
|
||||||
url "https://repo.spongepowered.org/maven/"
|
url = "https://repo.spongepowered.org/maven/"
|
||||||
}
|
}
|
||||||
|
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
@ -208,8 +208,8 @@ java {
|
||||||
// withJavadocJar() // If docs are included with the project, this line can be un-commented
|
// withJavadocJar() // If docs are included with the project, this line can be un-commented
|
||||||
|
|
||||||
// Sets the Java version
|
// Sets the Java version
|
||||||
sourceCompatibility = JavaVersion.VERSION_17
|
sourceCompatibility = JavaVersion.VERSION_24
|
||||||
targetCompatibility = JavaVersion.VERSION_17
|
targetCompatibility = JavaVersion.VERSION_24
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
|
|
|
@ -4,16 +4,17 @@ org.gradle.parallel=true
|
||||||
org.gradle.caching=false
|
org.gradle.caching=false
|
||||||
|
|
||||||
# Project Info
|
# Project Info
|
||||||
version=1.0.11
|
version=1.0.12
|
||||||
group=net.pietru
|
group=net.pietru
|
||||||
id=cookie_utils
|
id=cookie_utils
|
||||||
|
|
||||||
# Dependency Versions
|
# Dependency Versions
|
||||||
cosmic_reach_rev=alpha
|
cosmic_reach_rev=alpha
|
||||||
cosmic_reach_version=0.4.9
|
cosmic_reach_version=0.4.11
|
||||||
# If unspecified, will use the version above
|
# If unspecified, will use the version above
|
||||||
cosmic_reach_server_version=0.4.9
|
cosmic_reach_server_version=0.4.11
|
||||||
cosmic_quilt_version=2.3.1
|
cosmic_quilt_version=7b04941cee
|
||||||
|
#2.3.1
|
||||||
#2.2.0
|
#2.2.0
|
||||||
|
|
||||||
# modmenu_version=1.0.7
|
# 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
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
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
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
|
Loading…
Reference in a new issue