Gradle MultiProject定义对根项目的依赖

Gradle MultiProject定义对根项目的依赖

问题描述:

我有一个以这种方式配置的多项目gradle构建:

I have a multi project gradle build, configured in this way:

root
  |
  |---- projectA
  |
  |---- projectB

我想在root/build.gradle中声明所有嵌套项目的依赖关系,这是文件:

I want to declare in the root/build.gradle a dependency for all nested projects, this is the file:

subprojects {
      version = '1.0-SNAPSHOT'
      repositories {
           mavenLocal()
           mavenCentral()
           maven {
               url 'https://repository.jboss.org/nexus/content/groups/public-jboss/'
           }
       }
}

allprojects {
    dependencies {
        compile 'org.projectlombok:lombok:1.12.2'
    }
}

但是当我执行构建时,我有:

But when I execute the build, I have:

* What went wrong:

评估根项目代码"时发生问题.

A problem occurred evaluating root project 'code'.

No signature of method:
org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.compile() is applicable for argument types: (java.lang.String) values: [org.projectlombok:lombok:1.12.2]

可能的解决方案:模块(java.lang.Object)

Possible solutions: module(java.lang.Object)

我做错了什么?

compile方法是您一直在使用的插件的一部分(

compile method is part of the plugin you've been using (reference).

allprojects {

    apply plugin: 'java'
    //so that we can use 'compile', 'testCompile' for dependencies

    dependencies {
        compile 'org.projectlombok:lombok:1.12.2'
    }
}