From 27fe79c7bb57b4bb1c9b9cd74de27fe8bef3861b Mon Sep 17 00:00:00 2001 From: Rik Veenboer Date: Sun, 18 Oct 2015 15:53:32 +0100 Subject: [PATCH] Add basic project files --- .classpath | 11 +++-------- .gitignore | 18 +++++++----------- .project | 3 ++- build.gradle | 11 +++++++++++ 4 files changed, 23 insertions(+), 20 deletions(-) create mode 100644 build.gradle diff --git a/.classpath b/.classpath index 1f51963..4589d57 100644 --- a/.classpath +++ b/.classpath @@ -1,12 +1,7 @@ - - - - - - - - + + + diff --git a/.gitignore b/.gitignore index 2f4e377..615cf50 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,7 @@ -bin/ -build/ -lib/ -dist/ -synthuse.properties -native/uiabridge/x64 -native/uiabridge/release -native/uiabridge/Debug -!native/uiabridge/bin -!native/MsgHook/bin -!native/SetMsgHook/bin +build +bin +.gradle +.settings +.project +.classpath +/.settings diff --git a/.project b/.project index 9a0c119..966e7f6 100644 --- a/.project +++ b/.project @@ -1,6 +1,6 @@ - Synthuse + jna-test @@ -12,6 +12,7 @@ + org.springsource.ide.eclipse.gradle.core.nature org.eclipse.jdt.core.javanature diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..a865a02 --- /dev/null +++ b/build.gradle @@ -0,0 +1,11 @@ +apply plugin: 'java' +apply plugin: 'eclipse' + +repositories { + mavenCentral() +} + +dependencies { + compile 'net.java.dev.jna:jna:4.2.0' + compile 'net.java.dev.jna:platform:3.5.2' +} \ No newline at end of file