Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 1.20.1 #18

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 19 additions & 22 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,9 @@
buildscript {
repositories {
mavenCentral()
maven { url = 'https://maven.minecraftforge.net' }
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
}
plugins {
id 'eclipse'
id 'idea'
id 'maven-publish'
id 'net.minecraftforge.gradle' version '[6.0,6.2)'
}
apply plugin: 'net.minecraftforge.gradle'
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply from: 'https://raw.githubusercontent.com/SizableShrimp/Forge-Class-Remapper/main/classremapper.gradle'


version = "1.6.0"
Expand All @@ -31,7 +23,7 @@ minecraft {
// Simply re-run your setup task after changing the mappings to update your workspace.
// mappings channel: 'snapshot', version: '20201028-1.16.3'
// mappings channel: 'official', version: '1.16.5'
mappings channel: 'official', version: '1.19.2'
mappings channel: 'official', version: '1.20.1'
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.

accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
Expand Down Expand Up @@ -113,22 +105,27 @@ repositories {
mavenCentral()
mavenLocal()

maven { url = "https://www.cursemaven.com" } // curse mods
maven {
url "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
} // curse mods
}

dependencies {
// Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft 'net.minecraftforge:forge:1.19.2-43.1.3'
minecraft 'net.minecraftforge:forge:1.20.1-47.1.3'

//Integrated dynamics
implementation fg.deobf("curse.maven:cyclops-core-232758:3929867");
implementation fg.deobf("curse.maven:common-capabilities-247007:3929863");
implementation fg.deobf("curse.maven:integrated-dynamics-236307:3957305");
implementation fg.deobf("curse.maven:integrated-tunnels-251389:3957245");
implementation fg.deobf("curse.maven:integrated-crafting-287357:3929880");
implementation fg.deobf("curse.maven:integrated-terminals-295910:3929892");
implementation fg.deobf("curse.maven:cyclops-core-232758:5262063");
implementation fg.deobf("curse.maven:common-capabilities-247007:4987207");
implementation fg.deobf("curse.maven:integrated-dynamics-236307:5297722");
implementation fg.deobf("curse.maven:integrated-tunnels-251389:5314672");
implementation fg.deobf("curse.maven:integrated-crafting-287357:4987228");
implementation fg.deobf("curse.maven:integrated-terminals-295910:5264620");

modLib "com.google.re2j:re2j:1.1"

Expand Down
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-8.1.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
Loading