Last active
August 21, 2019 05:43
-
-
Save mutekinootoko/26817657fffca52f88aaf139fcd8e9c0 to your computer and use it in GitHub Desktop.
simple jar build gradle build file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This file was generated by the Gradle 'init' task. | |
* | |
* This is a general purpose Gradle build. | |
* Learn how to create Gradle builds at https://guides.gradle.org/creating-new-gradle-builds/ | |
*/ | |
apply plugin: 'java' | |
apply plugin: 'eclipse' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
} | |
jar { | |
manifest { | |
attributes( | |
'Main-Class': 'main.class.name' | |
) | |
} | |
} | |
sourceCompatibility = '1.8' | |
targetCompatibility = '1.8' | |
version = '0.0.1' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment