Не устанавливается gradle.bat

Версия Minecraft
1.7.10
API
Forge
Приветики)
Пытаюсь установить gradle 1.7.10 для создания модов для майнкрафт.
Использую команду: gradlew -Dorg.gradle.jvmargs=-Xmx2048M setupDecompWorkspace idea genIntellijRuns

Перед этим нашёл тему: ForgeGradle1.2 for Gradle5+
Вот такой у меня build.gradle:
Java:
apply plugin: 'idea'

idea {
    module {
        inheritOutputDirs = false
    }
}

buildscript {
    repositories {
        jcenter()
        maven {
            name = "forge"
            url = "https://files.minecraftforge.net/maven"
        }
        maven {
            name = "sonatype"
            url = "https://oss.sonatype.org/content/repositories/snapshots/"
        }
        maven {
            url = "https://jitpack.io"
        }
    }
    dependencies {
        classpath 'com.github.CDAGaming:ForgeGradle:1c670759c5'
    }
}

apply plugin: 'java'
apply plugin: 'net.minecraftforge.gradle.forge'

sourceCompatibility = targetCompatibility = '1.8'
compileJava {
    sourceCompatibility = targetCompatibility = '1.8'
}
Вот такой gradle-wrapper.properties:
Java:
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip

И в итоге вот такая ошибка:
Java:
FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project '***'.
> Could not resolve all artifacts for configuration ':classpath'.
   > Could not resolve org.eclipse.jdt:org.eclipse.jdt.core:3.10.0.v20131029-1755.
     Required by:
         project : > com.github.CDAGaming:ForgeGradle:1c670759c5 > net.minecraftforge.srg2source:Srg2Source:3.2-SNAPSHOT:20150109.190932-47
      > Could not resolve org.eclipse.jdt:org.eclipse.jdt.core:3.10.0.v20131029-1755.
         > Could not get resource 'https://jcenter.bintray.com/org/eclipse/jdt/org.eclipse.jdt.core/3.10.0.v20131029-1755/org.eclipse.jdt.core-3.10.0.v20131029-1755.pom'.
            > Could not GET 'https://jcenter.bintray.com/org/eclipse/jdt/org.eclipse.jdt.core/3.10.0.v20131029-1755/org.eclipse.jdt.core-3.10.0.v20131029-1755.pom'. Received status code 403 from server: Forbidden

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1m 38s

Подскажите, как исправить?
 
Решение

will0376

Токсичная личность
2,079
55
585
 
А, совсем не подумал об этом вчера... Вдруг кому пригодится моё решение. Поскольку я переходил с более новой версии mc, то немного поколдовал с build.gradle, собирал по кусочкам из разных мест (опыта не много) 😅

build.gardle:
Gradle (Groovy):
buildscript {
    repositories {
        mavenCentral()
        jcenter()
        maven {
            name = "github"
            url = "https://github.com/juanmuscaria/maven/raw/master"
        }
    }
    dependencies {
        classpath 'net.minecraftforge.gradle:ForgeGradle:[1.2-1.4.4-SNAPSHOT,)'
    }
}

apply plugin: 'idea'
idea {
    module {
        inheritOutputDirs = false
    }
}

apply plugin: 'java'
apply plugin: 'forge'

ext.config = parseConfig(file('config/build.properties'))
ext.priv = parseConfig(file('config/private.properties'))

[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'

version = config.mod_version
group = config.group
archivesBaseName = "${config.mod_name}[${config.mc_version}]"

minecraft {
    version = "1.7.10-10.13.4.1614-1.7.10"
    runDir = "run"
    replace "@mod_version@", project.version
    replace "@internal_mc_version@", config.internal_mc_version
    replace "@api_version@", config.api_version
    replace "@internal_version@", config.internal_version
    replace "@author@", config.author
    replace "@mod_name@", config.mod_name
}


dependencies {}

//Электронная подпись
task signJar(dependsOn: Jar) {
    def exec_line =
        "jarsigner -keystore " + priv.keyStore +
        " -storepass " + priv.storePass +
        " -keypass " + priv.keyPass +
        " " + jar.archivePath + " " + priv.alias
    println exec_line
    exec_line.execute()
}

build.dependsOn signJar

processResources {
    from(sourceSets.main.resources.srcDirs) {
        include 'mcmod.info'
        expand 'version': version,
        'mod_id': config.mod_id,
        'mod_name': config.mod_name,
        'mod_author': config.author,
        'mod_description': config.desc,
        'mc_version': config.mc_version,
        'mod_version': config.mod_version,
        'mod_icon': config.icon
    }

    from(sourceSets.main.resources.srcDirs) {
        exclude 'mcmod.info'
    }
}

task devJar(type: Jar) {
    classifier = 'dev'
    from sourceSets.main.output
}

task sourcesJar(type: Jar) {
    classifier = 'sources'
    from sourceSets.main.allSource
}

artifacts {
    archives devJar
    archives sourcesJar
}

def parseConfig(File conf) {
    if (conf.exists()) {
        conf.withReader {
            def prop = new Properties()
            prop.load(it)
            return (new ConfigSlurper().parse(prop))
        }
    } else {
        return null
    }
}

gradle.properties:
Gradle (Groovy):
org.gradle.jvmargs=-Xms256M -Xmx2G
org.gradle.daemon=false
Для всего остального было использовано то, что можно найти по ссылке выше.
Команда запуска:
Bash:
gradlew setupDecompWorkspace idea genIntellijRuns
 
Сверху