From 9e4d4a045e67dfd19806fcf1b82e7049ff6ea542 Mon Sep 17 00:00:00 2001 From: DmitriyMX Date: Fri, 11 Sep 2015 12:56:31 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D1=85=D0=BE=D0=B4=20?= =?UTF-8?q?=D0=BD=D0=B0=20Gradle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 28 +++++++++++++------ build.gradle | 18 ++++++++++++ build.xml | 77 ---------------------------------------------------- 3 files changed, 38 insertions(+), 85 deletions(-) create mode 100644 build.gradle delete mode 100644 build.xml diff --git a/.gitignore b/.gitignore index 84203dd..b71cd4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,20 @@ -## General ## -lib/ -target/ - -## IDEA ## -.idea/ -out/ -*.iml +## IDEA ## +.idea/ +out/ +*.iml +*.ipr +*.iws + +## ECLIPSE ## +.settings/ +bin/ +.classpath +.project + +## GRADLE ## +.gradle/ +build/ + +## OTHER ## +libs/ +target/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..cc9ce30 --- /dev/null +++ b/build.gradle @@ -0,0 +1,18 @@ +apply plugin: 'java' +apply plugin: 'idea' +apply plugin: 'eclipse' + +repositories { + mavenCentral() +} + +dependencies { + compile (['jline:jline:2.13']) +} + +sourceSets { + main { + java.srcDirs = ['src'] + resources.srcDirs = ['resources'] + } +} diff --git a/build.xml b/build.xml deleted file mode 100644 index a5532e5..0000000 --- a/build.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file