20

spring-boot-dependenciesGradle プラグインとを使用するマルチモジュール プロジェクトで、正しい 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-dependenciesspring-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
4

1 に答える 1

22

parent/build.gradle次のように再配置する必要があることがわかりました。

buildscript {
    ext {
        dependencyManagementPluginVersion = '0.5.3.RELEASE'
        springBootVersion = '1.3.0.RC1'
    }
    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}")
    }
}

allprojects {
    group = "com.example"
    version '0.0.1-SNAPSHOT'

    apply plugin: 'java'
    apply plugin: 'eclipse'
    apply plugin: 'idea'
}

subprojects {
    sourceCompatibility = 1.8
    targetCompatibility = 1.8

    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}")
        }
    }
}

問題は、buildscriptサブプロジェクトのブロックが実際には適切に構成されていたが...間違った場所にあるという事実にあります。このsubprojectsブロックはサブプロジェクトに関連していますが、宣言されたスクリプトで評価され、適用しようとしていたプラグインに対して宣言された依存関係はありませんでした。

于 2015-11-14T22:20:39.613 に答える