gradle发布jar包
Posted 随笔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gradle发布jar包相关的知识,希望对你有一定的参考价值。
在.gradle文件中添加以下代码
apply plugin: ‘application‘
mainClassName = ‘com.excel.ExcelApplication‘
task deploy(type: Copy) {
doFirst {
println "cmd /c gradle clean".execute().text
println "cmd /c gradle build -x test".execute().text
}
from configurations.runtime
into "excelJar"
from "build/libs/execl-1.0-SNAPSHOT.jar"
into "excelJar"
}
[compileJava, compileTestJava]*.options*.encoding = ‘UTF-8‘
以上是关于gradle发布jar包的主要内容,如果未能解决你的问题,请参考以下文章