Skip to content

Instantly share code, notes, and snippets.

/build.gradle Secret

Created January 31, 2014 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/2b8717ff3bb1b42804a8 to your computer and use it in GitHub Desktop.
Save anonymous/2b8717ff3bb1b42804a8 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:1.0-SNAPSHOT'
}
}
apply plugin: 'forge'
group = "sanandreasp.mods.EnderStuffPlus"
minecraft{version = "1.6.4-9.11.1.964"}
version = "1.6.4-1.1.0"
archivesBaseName = 'EnderStuffP'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar') // this is from https://github.com/MCDelta/TuxWeapons/blob/master/build.gradle
}
repositories {
mavenCentral()
}
sourceSets {
main {
java { srcDir 'java' }
resources { srcDir 'resources' }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment