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"

相关推荐
豆瓣鸡1 小时前
算法日记 - Day3
java·开发语言·算法
萧瑟余晖2 小时前
Java深入解析篇九之NIO详解
java·网络·nio
The Chosen One9852 小时前
高进度算法模板速记(待完善)
java·前端·算法
极光代码工作室4 小时前
基于SpringBoot的课程预约系统
java·springboot·web开发·后端开发
Leighteen5 小时前
`try-finally` 里的 `return`:为什么 `finally` 会悄悄改掉返回值、吞掉异常
java·开发语言
名字还没想好☜5 小时前
Go 的 time.After 在 select 循环里内存泄漏:定时器堆积原理与 timer.Reset 正确姿势
java·数据库·golang·go·goroutine
圆山猫6 小时前
[Virtualization](三):RISC-V H-extension 与 Guest 执行模式
android·java·risc-v
caishenzhibiao6 小时前
期货先行者主图 同花顺期货通指标
java·c语言·c#
史呆芬6 小时前
分布式事务实战:微服务跨服务数据一致性解决方案
java·后端·spring cloud
IT界的老黄牛6 小时前
限流命中后该怎么办:直接丢、阻塞等待、延迟重投三种姿势的取舍
java·rocketmq·redisson·令牌桶·削峰·分布式限流