Question

I have several projects [A, B, C], A depends on B and C.

I want to move my projects to a multi project build configuration. Today my projects live on SVN, completely isolated.

I was wondering if the only way to use the multi project build feature is if I move the projects to the same repository, imagine something like:

MyPorject 
--A 
----build.gradle 
--B 
---build.gradle 
--C 
----build.gradle 
--build.gradle

Suggestions are welcome! Thanks!

Was it helpful?

Solution

Well, I got 3 options from one guys of the Gradle project:

  • Always check out all three projects in the same relative locations, and make one of them the root
  • Use Subversion externals
  • Relocate all projects to a shared Subversion repository

Here http://forums.gradle.org/gradle/topics/how_to_deal_with_multi_project_configuration

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top