我有一种情况,我必须使用外部编译器编译某些内容(drools)并包含在classpath
由子项目构建的内容中。我有所有的依赖项和classpath
项目,但我能想到的唯一方法就是首先构建和安装这两个子项目,这样我就可以从本地仓库中取出它们了。有什么方法可以构建,然后将它们添加到buildscript
classpath
,这样我就不必安装它们了吗?
类似于:
buildscript {
repositories {...}
dependencies {
...
classpath group: 'this.group', name:'otherSubProject', version:'thisVersion'
...
}