Jump to content

Gradle guild error.


Geforce

Recommended Posts

Hello everyone. Im trying to recompile the example mod supplied by Forge just so i will know what to do with my actual mod. However, when i type "gradlew build" into my command prompt, i get this error:

 

Could not resolve net.minecraftforge.gradle:ForgeGradle:1.1-SNAPSHOT.

 

I checked my .gradle folder, and the ForgeGradle-1.1-SNAPSHOT.jar file is definitely in there. Anyone know what's wrong?

 

Thanks!

~Geforce

Potato's have skin. I have skin. Therefore, i am a potato.

 

Follow me on Twitter!

http://www.twitter.com/I_Mod_Minecraft

Link to comment
Share on other sites

You need the following lines from Forge's buildfile:

buildscript {
repositories {
	mavenCentral()
	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.1-SNAPSHOT'}
}

 

Either copy that into your build.gradle, or if you don't have any custom actions, overwrite your build.gradle with the one provided in forge src.

Read the EAQ before posting! OR ELSE!

 

This isn't building better software, its trying to grab a place in the commit list of a highly visible github project.

 

www.forgeessentials.com

 

Don't PM me, I don't check this account unless I have to.

Link to comment
Share on other sites

You need the following lines from Forge's buildfile:

buildscript {
repositories {
	mavenCentral()
	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.1-SNAPSHOT'}
}

 

Either copy that into your build.gradle, or if you don't have any custom actions, overwrite your build.gradle with the one provided in forge src.

I have that exact code in my build.gradle file already, and im still getting the error.

Potato's have skin. I have skin. Therefore, i am a potato.

 

Follow me on Twitter!

http://www.twitter.com/I_Mod_Minecraft

Link to comment
Share on other sites

  • 2 weeks later...

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.