Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Arzio
Last active October 4, 2022 17:54
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Arzio/848b8375c4c2ff828d5a7470ac1866b6 to your computer and use it in GitHub Desktop.
Save Arzio/848b8375c4c2ff828d5a7470ac1866b6 to your computer and use it in GitHub Desktop.
Fix Forge 1.7.10 HTTPS error during Gradle operations
// 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'
}
}
@Arzio
Copy link
Author

Arzio commented Oct 2, 2021

For anyone who still wants to make a 1.7.10 mod, try this repo: https://github.com/juanmuscaria/NotSoLegacyWorkspace-Gradle-Groovy

@tidsear
Copy link

tidsear commented Oct 4, 2022

Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment