Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[1.7.2][SOLVED]Export A Project that requires other Projects on the build path

Featured Replies

Posted

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):

 

 

hwzySAA.png

 

 

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!

  • 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!

  • 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.

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.