Last active
October 4, 2022 17:54
-
-
Save Arzio/848b8375c4c2ff828d5a7470ac1866b6 to your computer and use it in GitHub Desktop.
Fix Forge 1.7.10 HTTPS error during Gradle operations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The comments with [HTTPS FIX] tag refers to the parts that fixes the issue. | |
buildscript { | |
repositories { | |
// [HTTPS FIX] Replace mavenCentral() with the code block below | |
maven { | |
url "https://repo1.maven.org/maven2" | |
} | |
maven { | |
name = "forge" | |
url = "http://files.minecraftforge.net/maven" | |
} | |
maven { | |
name = "sonatype" | |
url = "https://oss.sonatype.org/content/repositories/snapshots/" | |
} | |
} | |
dependencies { | |
classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT' | |
} | |
} | |
// [HTTPS FIX] Add the code block below | |
allprojects { | |
repositories { | |
all { ArtifactRepository repo -> | |
if (repo instanceof MavenArtifactRepository){ | |
if (repo.url.toString().startsWith("http://repo1.maven.org/maven2")) { | |
repo.url = repo.url.toString().replace("http://", "https://") | |
} | |
} | |
} | |
} | |
} | |
apply plugin: 'forge' | |
version = "1.0" | |
group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html | |
archivesBaseName = "modid" | |
minecraft { | |
version = "1.7.10-10.13.4.1558-1.7.10" | |
runDir = "eclipse" | |
} | |
dependencies { | |
} | |
processResources | |
{ | |
// this will ensure that this task is redone when the versions change. | |
inputs.property "version", project.version | |
inputs.property "mcversion", project.minecraft.version | |
// replace stuff in mcmod.info, nothing else | |
from(sourceSets.main.resources.srcDirs) { | |
include 'mcmod.info' | |
// replace version and mcversion | |
expand 'version':project.version, 'mcversion':project.minecraft.version | |
} | |
// copy everything else, thats not the mcmod.info | |
from(sourceSets.main.resources.srcDirs) { | |
exclude 'mcmod.info' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For anyone who still wants to make a 1.7.10 mod, try this repo: https://github.com/juanmuscaria/NotSoLegacyWorkspace-Gradle-Groovy