Technology Consulting
Return to: Gradle Reference

Setting the Main Class for an Executable JAR

How to configure the Main class when building an executable JAR

Modify or add a jar closure. Specify the fully-qualified class name that contains your main() startup function.

jar {
    manifest {
        attributes 'Main-Class': 'com.klassconcepts.gradleSample.Main'
    }
}
Return to: Gradle Reference