Невозможно изменить зависимости конфигурации «: реализация» после ее включения в разрешение зависимостей. - PullRequest
0 голосов
/ 24 марта 2020

У меня очень простой c файл build.gradle.

plugins {
    id 'org.springframework.boot' version '2.2.5.RELEASE'
    id 'io.spring.dependency-management' version '1.0.8.RELEASE'
    id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'

repositories {
    mavenCentral()
}

bootJar{
    mainClassName = "$mainClassName";
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-actuator'
    implementation 'org.springframework.boot:spring-boot-starter-web'
    testImplementation('org.springframework.boot:spring-boot-starter-test') {
        exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
    }
}

Я получаю следующую ошибку, когда задача bootJar помещена перед блоком зависимостей. При размещении после блока зависимостей я не получаю сообщение об ошибке.

What went wrong:
A problem occurred evaluating root project 'sample-project-spring-boot'.
Cannot change dependencies of configuration ':implementation' after it has been included in dependency resolution.
...