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