【问题标题】:Unable to upgrade spring boot version in gradle无法在gradle中升级spring boot版本
【发布时间】:2021-06-16 06:08:54
【问题描述】:

我在本地安装了 gradle 4.7,下面是我的 gradle.build,它工作正常。 使用 gradle 插件版本 4.7,gradle build 成功

buildscript {
        ext {
            springBootVersion = '1.5.2.RELEASE'
        }
        repositories {
            maven { url "https://artifactory.domain.com/mavenrepo" }
            maven { url "https://artifactory.domain.com/maven.atlassian.com-cache" }
        }
        dependencies {
            classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
            classpath "gradle.plugin.com.github.sherter.google-java-format:google-java-format-gradle-plugin:0.6"
        }
    }
    
    apply plugin: "com.github.sherter.google-java-format"
    apply plugin: 'java'
    apply plugin: 'eclipse'
    apply plugin: 'idea'
    apply plugin: 'org.springframework.boot'
    
    apply plugin: 'findbugs'
    apply plugin: 'maven-publish'
    
    group = 'com.domain.xyz.myapp'
    version = '1.0.1-SNAPSHOT'
    
    repositories {
        maven { url "https://artifactory.domain.com/mavenrepo" }
    }
    project.tasks.findAll { it.name.startsWith("publish") } .each { it.dependsOn assemble }
    
    springBoot {
        classifier = 'boot'
    }
    
    publishing {
        publications {
            maven(MavenPublication) {
                artifact ("$buildDir/libs/$project.name-$version-boot.jar") {
                    classifier = 'boot'
                }
            }
        }
        
        repositories {
            maven {
                url "http://artifactory.xyz.com:8080/project-snapshots"
                 credentials {
                    username = "publish-username"
                    password = "publish-password"
                }
            }
        }
    }
    
    
    tasks.withType(FindBugs) {
        reports {
            xml.enabled false
            html.enabled true
        }
    }
    
    configurations {
        all*.exclude group: 'javax.servlet', module: 'servlet-api'
    }
    
    dependencies {
        compileOnly('org.projectlombok:lombok:1.16.14')
        compile('org.springframework.boot:spring-boot-starter-actuator')
        compile('org.springframework.boot:spring-boot-starter-cache')
        compile('org.springframework.boot:spring-boot-starter-data-jpa')
        compile('org.springframework.boot:spring-boot-starter-data-ldap')
        compile('org.springframework.boot:spring-boot-starter-web')
        compile('org.springframework.boot:spring-boot-starter-batch')
        compile('org.springframework.boot:spring-boot-starter-jdbc')
        compile('org.springframework:spring-web')
        compile('com.google.guava:guava:r05')
      runtime('mysql:mysql-connector-java:8.0.16')
        runtime('org.hsqldb:hsqldb:2.3.3')
        runtime('org.springframework.boot:spring-boot-devtools')
        testCompile('org.springframework.boot:spring-boot-starter-test')
        testCompile('com.jayway.jsonpath:json-path')
        compile('com.jcraft:jsch:0.1.53')
        compile('net.sourceforge.jtds:jtds:1.3.1')
        compile('jcifs:jcifs:1.3.17')
        compile('org.apache.camel:camel-core:2.15.0')
        compile('com.github.ulisesbocchio:jasypt-spring-boot-starter:1.9')
        compile('io.micrometer:micrometer-registry-prometheus:1.0.3')
        compile('io.micrometer:micrometer-spring-legacy:1.0.3')
    }

当我运行 gradle build 它工作正常。

但现在我需要将我的 SpringBootVersion 升级到 2.4.3(最新),并将文件中的第三行替换为以下内容:

springBootVersion = '2.4.3'

但我收到以下错误:

无法应用插件 [id 'org.springframework.boot'] Spring Boot 插件需要 Gradle 5(仅限 5.6.x)或 Gradle 6(6.3 或更高版本)。这 当前版本是 Gradle 4.7

如果 gradle build 可以在 4.7 上正常工作,那么 4.7 中的行 apply plugin: 'org.springframework.boot'in 也可以,4.7 可以识别它,为什么当 4.7 可以构建它时它会要求我升级到更高版本?我错过了什么?如何正确升级 Spring Boot 版本并解决?

【问题讨论】:

    标签: java spring-boot gradle build gradle-plugin


    【解决方案1】:

    您将需要更新 gradle,因为较新的 spring boot 版本与旧版本的 gradle 不兼容。

    您可以手动下载新的 gradle 或使用 gradle wrapper 为您的项目设置版本。

    你可以使用命令来做到这一点

    gradle wrapper --gradle-version 6.8.3 要么 ./gradle wrapper --gradle-version 6.8.3

    有时 gradle 版本太旧而无法进行更新跳转,无论如何您都必须手动下载新版本(如果我没记错的话,gradle 2 可能太旧而无法直接升级到 6。)

    要在设置后使用您的包装器,只需将您的 gradle 命令替换为 gradlew。 示例:

    gradlew bootRun

    【讨论】:

      【解决方案2】:

      在 buildScript 块中有这行代码:

      classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
      

      这是告诉 gradle 使用哪个版本的 spring boot 插件的代码。当您将 springBootVersion = '1.5.2.RELEASE' 更改为 springBootVersion = '2.4.3' 时,这也会影响 Spring Boot 版本以及 Spring Boot 插件版本。因此出现错误。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2022-06-24
        • 2021-01-18
        • 2021-01-20
        • 2019-05-19
        • 2019-05-21
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多