Gradle - jar file name in java plugin

前端 未结 9 1836
借酒劲吻你
借酒劲吻你 2021-02-01 11:46

I am trying with Gradle first time. I am trying with a maven java project to compile and create a jar file. It is compiling and creating the jar file in build/libs directory as

9条回答
  •  盖世英雄少女心
    2021-02-01 12:27

    In Kotlin DSL you can also use:

    tasks.jar {
        archiveFileName.set("app.jar")
    }
    

    With Spring boot and Kotlin DSL you can use:

    tasks {
        bootJar {
            archiveFileName.set("app.jar")
        }
    }
    

提交回复
热议问题