1

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!

4

1 回答 1

2

好吧,我从 Gradle 项目的一个人那里得到了 3 个选项:

  • 始终在相同的相对位置检查所有三个项目,并将其中一个设为根
  • 使用 Subversion 外部组件
  • 将所有项目重定位到共享的 Subversion 存储库

这里http://forums.gradle.org/gradle/topics/how_to_deal_with_multi_project_configuration

于 2012-06-04T14:51:35.583 回答