Java开发中使用idea进行Gradle4.5的.jar打包,并且在jar包名字中加上时间
Posted Acmen-zym
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java开发中使用idea进行Gradle4.5的.jar打包,并且在jar包名字中加上时间相关的知识,希望对你有一定的参考价值。
点击build进行打包
打包好的jar包文件
在jar块中加上rootProject.version = getNewVersionValue(),getNewVersionValue()为自己定义的格式
buildscript {
ext {
springBootVersion = '2.1.2.RELEASE'
}
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
jar {
rootProject.version = getNewVersionValue()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
allprojects {
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
mavenCentral()
}
}
/*ext['thymeleaf.version'] = '3.0.2.RELEASE'
ext['thymeleaf-layout-dialect.version'] = '2.0.5'*/
dependencies {
compile project(":zndzXytCommon")
compile fileTree(dir: 'lib', include: ['*.jar'])
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
//获取新的版本号
def getNewVersionValue() {
//用日期作为版本号
return new Date().format("yyyyMMdd-HHmm", TimeZone.getTimeZone("GMT+08:00"))
}
以上是关于Java开发中使用idea进行Gradle4.5的.jar打包,并且在jar包名字中加上时间的主要内容,如果未能解决你的问题,请参考以下文章