gpt4 book ai didi

spring-boot - 如何在Spring Boot Gradle项目中将时间戳附加到jar中?

转载 作者:行者123 更新时间:2023-12-03 04:53:56 31 4
gpt4 key购买 nike

如何在Spring Boot Gradle项目中将时间戳附加到jar?

./gradlew build
创建jar app-0.0.1-SNAPSHOT.jar,如何使用时间戳创建jar
app-0.0.1-SNAPSHOT-2020-11-09.02-30.jar
-------- Gradle
plugins {
id 'org.springframework.boot' version '2.3.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}

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

repositories {
mavenCentral()
}

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

test {
useJUnitPlatform()
}

最佳答案

怎么样

bootJar {
archiveFileName = "app-0.0.1-SNAPSHOT-"+new Date().format('yyyy-MM-dd.HH-mm')+ ".jar"
}
使用gradle 6.6.1和spring boot插件版本 2.3.4测试

关于spring-boot - 如何在Spring Boot Gradle项目中将时间戳附加到jar中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64739311/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com