如何使用spring boot plugin 2.0.x从一个具有不同依赖项的gradle项目生成2个jar

问题描述 投票:1回答:1

我正在尝试将我的项目迁移到最新版本的Spring和Spring Boot。在我遇到这个问题之前,一切都很平静。

我们的一个项目生成最终Jar的两个版本,一个具有最小依赖性的普通可运行,另一个具有所有额外模块。

当我使用Spring Boot 1.5.x版时,解决方案很简单,我们使用'customConfiguration`

当我使用旧插件时,我的配置文件或多或少看起来像那样

bootRepackage{ 
    customConfiguration = "addons"
}


dependencies {
    compile "my.org:core-lib:1.0.0"
    addons  "my.org:extra-lib:1.0.0"
}

现在bootRepackagebootJar取代,customConfiguration没有财产configurations { //second jar's configuration addons } dependencies { .... // sample dependency addons group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.1' } task customJar(type: org.springframework.boot.gradle.tasks.bundling.BootJar){ baseName = 'custom-spring-boot' version = '0.1.0' mainClassName = 'hello.Application' from { // this is your second jar's configuration configurations.addons.collect { it.isDirectory() ? it : zipTree(it) } } with bootJar } // add a dependency to create both jars with gradle bootJar Command bootJar.dependsOn customJar 。这是可以在最新版本的插件中做,如果是的话,那么有人可以指出我正确的方向。

spring-boot gradle gradle-plugin spring-boot-gradle-plugin
1个回答
2
投票

bootJar是Jar类的子类,因此您可以在此处使用Jar任务的配置。

例:

qazxswpoi

(我不知道有哪种方法可以做到这一点)

© www.soinside.com 2019 - 2024. All rights reserved.