Posted June 29, 20214 yr 12:26:47: Executing task 'runClient'... FAILURE: Build failed with an exception. * Where: Build file 'C:\Cookie\CookiePrivates\build.gradle' line: 18 * What went wrong: A problem occurred evaluating root project 'ru.privates'. > Failed to apply plugin 'net.minecraftforge.gradle'. > Failed to validate certificate for https://maven.minecraftforge.net/, Most likely cause is an outdated JDK. Try updating at https://adoptopenjdk.net/ To disable this check re-run with -Dnet.minecraftforge.gradle.test_certs=false * 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 510ms 12:26:48: Task execution finished 'runClient'. buildscript { ext.kotlin_version = '1.5.20' repositories { maven { url = 'https://maven.minecraftforge.net' } maven { url = 'https://repo.spongepowered.org/repository/maven-public/' } mavenCentral() } dependencies { classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '4.1+', changing: true //classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } apply plugin: 'net.minecraftforge.gradle' apply plugin: 'kotlin' //apply plugin: 'org.spongepowered.mixin' group = 'ru' version = '0.0.0.1' archivesBaseName = 'cookieteam' java.toolchain.languageVersion = JavaLanguageVersion.of(8) minecraft { mappings channel: 'snapshot', version: '20210309-1.16.5' runs { client { workingDirectory project.file('run') property 'forge.logging.markers', 'REGISTRIES' property 'forge.logging.console.level', 'debug' // arg "-mixin.config=ru.privates.mixins.json" mods { privates { source sourceSets.main } } } server { workingDirectory project.file('run') property 'forge.logging.markers', 'REGISTRIES' property 'forge.logging.console.level', 'debug' //arg "-mixin.config=ru.privates.mixins.json" mods { privates { source sourceSets.main } } } data { workingDirectory project.file('run') property 'forge.logging.markers', 'REGISTRIES' property 'forge.logging.console.level', 'debug' args '--mod', 'ru.privates', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') mods { privates { source sourceSets.main } } } } } //mixin { add sourceSets.main, "ru.privates.refmap.json" } sourceSets.main.resources { srcDir 'src/generated/resources' } repositories { maven { name = 'Kotlin for Forge' url = 'https://thedarkcolour.github.io/KotlinForForge/' } } dependencies { minecraft 'net.minecraftforge:forge:1.16.5-36.1.31' //annotationProcessor 'org.spongepowered:mixin:0.8:processor' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" fg.deobf(implementation('thedarkcolour:kotlinforforge:1.13.0')) } jar { manifest { attributes( [ "Specification-Title" : "ru.privates", "Specification-Vendor" : "GoogleTan", "Specification-Version" : "1", "Implementation-Title" : project.name, "Implementation-Version" : project.version, "Implementation-Vendor" : "GoogleTan", //"MixinConfigs" : "ru.privates.mixins.json", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") ]) } } jar.finalizedBy('reobfJar') repositories { mavenCentral() } compileKotlin { kotlinOptions {jvmTarget = "1.8"} } compileTestKotlin { kotlinOptions { jvmTarget = "1.8"} } distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists Why it does not work and how i can fix it?
June 29, 20214 yr Author The jdk is all right - all other projects works currectly. I changed jdk a lot of times - nothing new. Edited June 29, 20214 yr by WildTan
June 30, 20214 yr Author The new project, deleting user/.gradle/ and full reinstalation of all of java, intellij, have fixed it. Edited June 30, 20214 yr by WildTan
May 31, 20232 yr I actually solved for myself, disabled other java versions and did the command line ./gradlew genIntellijRuns (i use Intellij idea)
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.