idea纯java工程使用gradle指定生成jar的Main-Class,idea生成jar

build.gradle核心代码如下:

复制代码
jar {
    manifest {
        attributes "Main-Class": "com.example.sample.Application"
    }
    from {
        configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
    }
}

完整代码如下:

复制代码
group 'com.example.sample'
version '2.1.6'

apply plugin: 'java'

tasks.withType(JavaCompile) {
    options.encoding = "UTF-8"
}

sourceCompatibility = 1.8

repositories {
    maven { url "https://maven.aliyun.com/repository/central" }
    maven { url "https://maven.aliyun.com/repository/jcenter" }
    mavenCentral()
//    jcenter()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.11'

    compile 'org.swinglabs.swingx:swingx-core:1.6.5'
    compile "com.squareup.okhttp3:okhttp:3.14.6"
    compile 'com.alibaba:fastjson:1.2.70'
    compile 'org.quartz-scheduler:quartz:2.3.0'
    compile 'com.google.zxing:core:3.4.0'
    compile 'com.google.zxing:javase:3.4.0'
    compile 'com.google.code.gson:gson:2.8.6'
    compile 'mysql:mysql-connector-java:5.1.39'
    compile "org.apache.commons:commons-lang3:3.6"
    compile "commons-net:commons-net:3.6"
    compile "io.github.willena:sqlite-jdbc:3.33.0.1"
    compile "io.projectreactor.netty:reactor-netty:0.9.9.RELEASE"

    compile "org.apache.commons:commons-compress:1.9"

//  不引入xz依赖会在new SevenZFile的时候报错java.lang.NoClassDefFoundError: org/tukaani/xz/FilterOptions
    compile "org.tukaani:xz:1.9"

    //解压rar5,所需依赖开始
    compile "com.github.axet:java-unrar:1.7.0-8"
    compile "com.github.junrar:junrar:4.0.0"

    compile "net.sf.sevenzipjbinding:sevenzipjbinding:16.02-2.01"
    compile "net.sf.sevenzipjbinding:sevenzipjbinding-all-platforms:16.02-2.01"
    compile "org.apache.commons:commons-compress:1.9"
    compile "org.tukaani:xz:1.5"

    compile "commons-io:commons-io:2.8.0"
    compile "com.aliyun.openservices:aliyun-log:0.6.64"

    compile "org.apache.poi:poi:4.1.0"
    compile "org.apache.poi:poi-ooxml:4.1.0"
    compile "net.lingala.zip4j:zip4j:1.3.2"
}

jar {
    manifest {
        attributes "Main-Class": "com.example.sample.Application"
    }
    from {
        configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
    }
}

双击gradle条目下的tasks--build---assemble就可以生成jar;

生成目录在"项目根目录\build\libs"

相关推荐
屏风走马18 分钟前
SpringSecurity的简单想法
java
Y1_again_0_again23 分钟前
Java中第三方日志库-Log4J
java·开发语言·log4j
我是华为OD~HR~栗栗呀27 分钟前
24届-Python面经(华为OD)
java·前端·c++·python·华为od·华为·面试
Tony_yitao29 分钟前
符号运算(华为OD)
java·算法·华为od
柳贯一(逆流河版)36 分钟前
Nacos 实战指南:微服务下服务注册与配置管理的完整落地
java·微服务·架构
一叶飘零_sweeeet44 分钟前
从轮询到实时推送:将站内消息接口改造为 WebSocket 服务
java·websocket
yinke小琪1 小时前
从秒杀系统崩溃到支撑千万流量:我的Redis分布式锁踩坑实录
java·redis·后端
我登哥MVP1 小时前
Apache Tomcat 详解
java·笔记·tomcat
SXJR1 小时前
Spring前置准备(八)——ConfigurableApplicationContext和DefaultListableBeanFactory的区别
java·后端·spring
IccBoY1 小时前
Java采用easyexcel组件进行excel表格单元格的自动合并
java·开发语言·excel