Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

seems like a problem no oneelse have faced before #958

Closed
helloworld2222-udk opened this issue Dec 15, 2024 · 2 comments
Closed

seems like a problem no oneelse have faced before #958

helloworld2222-udk opened this issue Dec 15, 2024 · 2 comments
Labels
forum Not an issue with ForgeGradle, see the forums not us Issue is not an actual issue with ForgeGradle but a related project

Comments

@helloworld2222-udk
Copy link

Execution failed for task ':getVersionJson'.

Error while evaluating property 'url' of task ':getVersionJson'
java.io.FileNotFoundException: C:\Users\green.gradle\caches\minecraft\versionJsons\index.json (The system cannot find the file specified) buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
url = "https://maven.minecraftforge.net/"
}
}
dependencies {
classpath ('com.anatawa12.forge:ForgeGradle:1.2-1.1.+') {
changing = true
}
}
}

plugins {
id 'java-library'
id 'maven-publish'
}

apply plugin: 'forge'

// These settings allow you to choose what version of Java you want to be compatible with. Forge 1.7.10 runs on Java 6 to 8.
sourceCompatibility = 1.6
targetCompatibility = 1.6

version = project.version
group = project.group

minecraft {
version = project.minecraft_version + "-" + project.forge_version
runDir = "run"
}

dependencies {
// you may put jars on which you depend on in ./libs
// or you may define them like so..
//compile "some.group:artifact:version:classifier"
//compile "some.group:artifact:version"

// real examples
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev'  // adds buildcraft to the dev env
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env

// for more info...
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html

}

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 values in only mcmod.info.
filesMatching('mcmod.info') {
    // Replace version and mcversion.
    expand 'version':project.version, 'mcversion':project.minecraft.version
}

}

// Ensures that the encoding of source files is set to UTF-8, see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}

// This task creates a .jar file containing the source code of this mod.
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
from sourceSets.main.allSource
}

// This task creates a .jar file containing a deobfuscated version of this mod, for other developers to use in a development environment.
task devJar(type: Jar) {
classifier = "dev"
from sourceSets.main.output
}

// Creates the listed artifacts on building the mod.
artifacts {
archives sourcesJar
archives devJar
}

// This block configures any maven publications you want to make.
publishing {
publications {
mavenJava(MavenPublication) {
// Add any other artifacts here that you would like to publish!
artifact(jar) {
builtBy build
}
artifact(sourcesJar) {
builtBy sourcesJar
}
artifact(devJar) {
builtBy devJar
}
}
}

// This block selects the repositories you want to publish to.
repositories {
    // Add the repositories you want to publish to here.
}

} just so confused i just changed a computer and in my old computer it worked perfectly fine 😭

@helloworld2222-udk
Copy link
Author

just want to mention that ive already tried --refresh-dependencies and it dosent work at all

@RealMangorage RealMangorage added forum Not an issue with ForgeGradle, see the forums not us Issue is not an actual issue with ForgeGradle but a related project labels Dec 15, 2024
Copy link

👋 We use the issue tracker exclusively for final bug reports and feature requests. However, this issue appears to be better suited for the Forge Support Forums or Forge Discord. Please create a new topic on the support forum with this issue or ask in the #tech-support channel in the Discord server, and the conversation can continue there.

@github-actions github-actions bot locked as off-topic and limited conversation to collaborators Dec 15, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
forum Not an issue with ForgeGradle, see the forums not us Issue is not an actual issue with ForgeGradle but a related project
Projects
None yet
Development

No branches or pull requests

2 participants