Skip to content

Instantly share code, notes, and snippets.

@mutekinootoko
Last active August 21, 2019 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mutekinootoko/26817657fffca52f88aaf139fcd8e9c0 to your computer and use it in GitHub Desktop.
Save mutekinootoko/26817657fffca52f88aaf139fcd8e9c0 to your computer and use it in GitHub Desktop.
simple jar build gradle build file
/*
* 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