diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..c75717e654b023ce55f6f419ddf127734fe33d48 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +*.class + +# Package Files # +*.war +*.ear +.classpath +.project +.DS_Store +.settings/ +classes/ +icon/ +work/ +image/ +work/ +tmp/ +production/ +build/ +.gradle/ +bin/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000000000000000000000000000000000000..ff181d1ec49136b02350cd8c3c415ee582c1cff9 --- /dev/null +++ b/build.gradle @@ -0,0 +1,25 @@ +apply plugin: 'java' +apply plugin: 'eclipse' +apply plugin: 'maven' + +group = 'com.youbenzi' +sourceCompatibility = 1.7 +version = '1.0' +jar { + manifest { + attributes 'Implementation-Title': 'demo-project', + 'Implementation-Version': version + } +} + +repositories { + mavenCentral() +} + +dependencies { + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +compileJava { + options.encoding = "UTF-8" +}