Skip to content

Commit

Permalink
Port to 1.20.1 Mostly complete.
Browse files Browse the repository at this point in the history
  • Loading branch information
covers1624 committed Oct 16, 2023
1 parent 7c54e84 commit 80a45b4
Show file tree
Hide file tree
Showing 134 changed files with 1,088 additions and 302 deletions.
26 changes: 7 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,27 +1,15 @@
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://maven.minecraftforge.net/" }
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:5.1.+'
}
}

plugins {
id 'java'
id 'maven-publish'
id "net.covers1624.signing" version '1.1.4'
id 'net.neoforged.gradle' version '[6.0.18,6.2)'
}

apply plugin: 'net.minecraftforge.gradle'
java.toolchain.languageVersion = JavaLanguageVersion.of(17)

group = "codechicken"
archivesBaseName = "EnderStorage"

java.toolchain.languageVersion = JavaLanguageVersion.of(17)

sourceSets.main.resources.srcDirs += "src/main/generated"

file('build.properties').withReader {
Expand Down Expand Up @@ -77,12 +65,12 @@ minecraft {
repositories {
mavenLocal()
maven { url = "https://chickenbones.net/maven" }
maven { url = "https://dvs1.progwml6.com/files/maven" }
maven { url = "https://maven.blamejared.com/" }
}

dependencies {
minecraft "net.minecraftforge:forge:${config.mc_version}-${config.forge_version}"
implementation fg.deobf("codechicken:CodeChickenLib:${config.mc_version}-${config.ccl_version}:universal")
minecraft "net.neoforged:forge:${config.mc_version}-${config.forge_version}"
implementation fg.deobf("codechicken:CodeChickenLib:1.19.2-${config.ccl_version}:universal")
implementation fg.deobf("mezz.jei:jei-${config.mc_version}-forge:${config.jei_version}")
}

Expand Down Expand Up @@ -116,7 +104,7 @@ processResources {

jar {
finalizedBy 'reobfJar'
classifier = 'universal'
archiveClassifier = 'universal'
manifest {
attributes 'Specification-Title': archivesBaseName
attributes 'Specification-Vendor': 'covers1624'
Expand All @@ -132,7 +120,7 @@ jar {
task srcJar(type: Jar) {
build.dependsOn it
from sourceSets.main.allSource
classifier = 'sources'
archiveClassifier = 'sources'
from file("LICENSE.txt")
}

Expand Down
8 changes: 4 additions & 4 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
mc_version=1.19.2
forge_version=43.1.1
mc_version=1.20.1
forge_version=47.1.65
ccl_version=4.3.0.+
ccl_version_max=5.0.0
jei_version=11.2.0.246
mod_version=2.10.1
jei_version=15.2.0.27
mod_version=2.11.0
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

2 comments on commit 80a45b4

@samuelWilliams99
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi! Whats left to make this work? :)

@FlexibleGames
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I hope not much, I find I can't play without this mod.

Please sign in to comment.