Mod list component for Cinder Core. Necessary for it to work. Only exists as separate plugin due to me not finding a ForgeGradle setup that can handle both mixins and access transformers at once.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Shinare c5762c5708 Initializing repository 2 years ago
.gradle Initializing repository 2 years ago
.settings Initializing repository 2 years ago
gradle/wrapper Initializing repository 2 years ago
libs Initializing repository 2 years ago
src/main Initializing repository 2 years ago
.gitignore Initializing repository 2 years ago
.project Initializing repository 2 years ago
Build.sh Initializing repository 2 years ago
LICENSE Initial commit 2 years ago
README.md Initializing repository 2 years ago
build.gradle Initializing repository 2 years ago
gradle.properties Initializing repository 2 years ago
gradlew Initializing repository 2 years ago
gradlew.bat Initializing repository 2 years ago
settings.gradle Initializing repository 2 years ago

README.md

anatawa12's ForgeGradle 1.2 fork for Gradle 4.4.1+ - example project

This is an example mod using the fork of ForgeGradle-1.2 made by anatawa12. This fork supports Gradle 4.4.1 and later. This example project uses Gradle 5.6.4.

How to use this example project

You can download this example project from here, or use it as a template on Github. This project can be used as a replacement for Forge's 1.7.10 MDK.

How to replace ForgeGradle 1.2. with anatawa12's fork

Although this example project has some differences to Forge's 1.7.10 MDK, anatawa12's fork of ForgeGradle 1.2 can be used by most projects with only minimal changes to their Gradle build script.

Here is a list of changes to Forge's 1.7.10 MDK Gradle build script, to replace the official ForgeGradle 1.2 plugin with the fork. These changes are likely to work with most projects based on Forge's 1.7.10 MDK.

In the repositories block of the buildscript section, add jcenter, and switch the Forge maven to use HTTPS instead of HTTP:

     repositories {
         mavenCentral()
         maven {
             name = "forge"
-            url = "http://files.minecraftforge.net/maven"
+            url = "https://maven.minecraftforge.net/"
         }

Also in the dependencies block of the buildscript section, change the dependency on Forge's official ForgeGradle 1.2 to the fork:

     dependencies {
-        classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
+        classpath ('com.anatawa12.forge:ForgeGradle:1.2-1.1.+') {
+            changing = true
+        }
     }

The Gradle wrapper should also be changed to use Gradle 4.4.1 or higher.