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包名字中加上时间的主要内容,如果未能解决你的问题,请参考以下文章

java 使用idea进行单元测试

4. 使用开发工具 IDEA连载 4

java开发中使用IDEA活动模板快速增加注释

Java 开发工具IntelliJ IDEA

使用IDEA进行JAVA代码的远程Debug

JAVA开发工具IDEA使用体验