在使用 Gradle 插件的多模块项目中,正确的 Gradle 配置是什么样spring-boot-dependencies
的spring-boot
?
我有以下项目设置:
parent
|
+ build.gradle
|
+ alpha
| |
| + build.gradle
|
+ beta
| |
| + build.gradle
- 该
parent
模块包含常见的项目配置。 - 该
alpha
模块是一个模块,我想使用spring-boot-dependencies bom 中指定的版本号导入依赖项,但结果是标准 jar。 - 该
beta
模块是一个依赖的模块,alpha
结果是一个可执行的 Spring Boot jar 文件(包括所有依赖项)。因此,这个项目既需要插件spring-boot-dependencies
也需要spring-boot
插件。
为了使 Gradle 文件保持干燥,我已将常用模块脚本提取到父build.gradle
文件中。
尝试$ gradle build
使用以下项目配置执行会导致:
> Plugin with id 'io.spring.dependency-management' not found.
父 gradle.build
allprojects {
group = "com.example"
version '0.0.1-SNAPSHOT'
ext {
dependencyManagementPluginVersion = '0.5.3.RELEASE'
springBootVersion = '1.3.0.RC1'
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
}
subprojects {
sourceCompatibility = 1.8
targetCompatibility = 1.8
buildscript {
repositories {
jcenter()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
classpath("io.spring.gradle:dependency-management-plugin:${dependencyManagementPluginVersion}")
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:${springBootVersion}")
// mavenBom("org.springframework.boot:spring-boot-starter-parent:${springBootVersion}")
}
}
}
alpha build.gradle
dependencies {
compile('org.springframework:spring-web')
}
beta gradle.build
apply plugin: 'spring-boot'
dependencies {
compile project(':alpha')
compile('org.springframework.boot:spring-boot-starter')
compile('org.springframework.boot:spring-boot-starter-web')
}
注释:
- Spring Boot 1.3.0.M1中更改
spring-boot
了插件的行为 - 摇篮版本:2.8
- Spring Boot 版本 1.3.0.RC1