Jump to content

MisterOutofTime

Members
  • Posts

    2
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

MisterOutofTime's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. build.gradle buildscript { repositories { mavenCentral() maven { name = "forge" url = "http://files.minecraftforge.net/maven" } } dependencies { classpath 'net.minecraftforge.gradle:ForgeGradle:1.0-SNAPSHOT' runtime files('Libaries/WolframAlpha-1.1.jar') } } apply plugin: 'forge' version = "1.0" group= "co.uk.sfgaming.SimpleCommands" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "Simple Commands" minecraft { version = "1.6.4-9.11.1.964" } processResources { // replace stuff in mcmod.info, nothing else from(sourceSets.main.resources.srcDirs) { include 'mcmod/info' // replace version and mcversion expand 'version':project.version, 'mcversion':project.minecraft.version } // copy everything else, thats not the mcmod.info from(sourceSets.main.resources.srcDirs) { exclude 'mcmod.info' } }
  2. Hey I'm working on an Mod that depends on an jar i can compile it succesfully in intellij but how do i need to change the gradle.build for this to work? i tried it with compile files("FilePath") but the respond i get is > No signature of method: org.gradle.api.internal.artifacts.dsl.dependencies.Def aultDependencyHandler.compile() is applicable for argument types: (org.gradle.ap i.internal.file.collections.DefaultConfigurableFileCollection) values: [file col lection] Possible solutions: module(java.lang.Object)
×
×
  • Create New...

Important Information

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