Posted July 17, 201411 yr Hi! Just managed to get my dependency setup Working but now i have problems exporting it. I added the Mainmod project in my Submod(own Project) to the Java Build Path. This allows my to use Items and Blocks from my Mainmod. But when i try to export my projects via ./gradlew build it crashes saying that it can't find the Files. (They don't really exist in my submod-project so its no big surprise) Heres a photo from my package Explorer(Both Projects are in the same Folder): Can someone pls help me to export my mods? any help would be greatly appreciated. thx in advance for any support or hint how to solve this, Jacky Here could be your advertisement!
July 17, 201411 yr Author Update: ok, i tried to add my root Project to the dependencies of the subproject. didn't work. Heres my mainmod build.gradle: println project.name 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.2-SNAPSHOT' } } allprojects { apply plugin: 'forge' minecraft{version = "1.7.2-10.12.2.1121"} version = "1.0" archivesBaseName = project.projectDir.name } 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 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' } } and my submod build.gradle: version = "1.0" dependencies { compile project ':DimensionShiftCore' // 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 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' } } An here is my Console output: USERNAMEs-mbp:DimensionShiftCore USERNAME$ ./gradlew build DimensionShiftCore **************************** Powered By MCP: http://mcp.ocean-labs.de/ Searge, ProfMobius, Fesh0r, R4wk, ZeuX, IngisKahn MCP Data version : unknown **************************** FAILURE: Build failed with an exception. * Where: Build file '/Users/USERNAME/Desktop/modding/DimensionShiftInfectus/build.gradle' line: 6 * What went wrong: A problem occurred evaluating project ':DimensionShiftInfectus'. > Could not find property ':DimensionShiftCore' on DefaultProjectDependency{dependencyProject='project ':DimensionShiftInfectus'', configuration='default'}. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 5.929 secs USERNAMEs-mbp:DimensionShiftCore USERNAME$ Has anyone an idea what i am doing wrong? Here could be your advertisement!
July 17, 201411 yr Author GOT IT WORKING!!! dependencies { compile rootProject } [code] FIXED IT!!!!! Here could be your advertisement!
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.