spring-boot-dependencies
Gradle プラグインとを使用するマルチモジュール プロジェクトで、正しい Gradle 構成はどのように見えますspring-boot
か?
次のプロジェクト設定があります。
parent
|
+ build.gradle
|
+ alpha
| |
| + build.gradle
|
+ beta
| |
| + build.gradle
parent
モジュールには、共通のプロジェクト構成が含まれています。- このモジュールは、 spring-boot-dependencies bom で
alpha
指定されたバージョン番号を使用して依存関係をインポートしたいモジュールですが、その結果は標準の jar です。 beta
モジュールは依存するモジュールでありalpha
、結果は実行可能な Spring Boot jar ファイル (すべての依存関係を含む) です。したがって、このプロジェクトにはspring-boot-dependencies
とspring-boot
プラグインの両方が必要です。
Gradle ファイルを DRY に保つために、共通モジュール スクリプトを親の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}")
}
}
}
アルファ build.gradle
dependencies {
compile('org.springframework:spring-web')
}
ベータ 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
- スプリング ブート バージョン 1.3.0.RC1