我必须对项目core
和main
进行评分。它们处于扁平的项目结构中:
/
/core
/main
两个项目都使用java插件。 main
项目有一个settings.gradpe
文件,其中包含以下内容:
includeFlat "core"
build.gradle
的{{1}}是:
main
当我在主项目上执行apply plugin: 'java'
apply plugin: 'eclipse'
...
dependencies {
compile (project(':core'))
}
任务时。核心项目首先构建,生成的build
用作core-1.0.jar
的编译任务的依赖项。
当我在main
上使用build
任务时,我希望main
项目中的core-1.0.jar
被复制到我core
的{{1}}文件夹中1}}项目。
我该怎么做?