Add basic project files
This commit is contained in:
11
.classpath
11
.classpath
@@ -1,12 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="src" path="src"/>
|
<classpathentry kind="src" path="src/main/java"/>
|
||||||
<classpathentry kind="src" path="native/MsgHook/bin"/>
|
<classpathentry exported="true" kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||||
<classpathentry kind="src" path="native/uiabridge/bin"/>
|
<classpathentry exported="true" kind="con" path="org.springsource.ide.eclipse.gradle.classpathcontainer"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
|
|
||||||
<classpathentry kind="lib" path="lib/jna-3.4.0.jar" sourcepath="C:/Users/admin/.m2/repository/net/java/dev/jna/jna/3.4.0/jna-3.4.0-sources.jar"/>
|
|
||||||
<classpathentry kind="lib" path="lib/platform-3.4.0.jar"/>
|
|
||||||
<classpathentry kind="lib" path="lib/junit-4.11.jar"/>
|
|
||||||
<classpathentry kind="lib" path="lib/hamcrest-core-1.3.jar"/>
|
|
||||||
<classpathentry kind="output" path="bin"/>
|
<classpathentry kind="output" path="bin"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
|||||||
18
.gitignore
vendored
18
.gitignore
vendored
@@ -1,11 +1,7 @@
|
|||||||
bin/
|
build
|
||||||
build/
|
bin
|
||||||
lib/
|
.gradle
|
||||||
dist/
|
.settings
|
||||||
synthuse.properties
|
.project
|
||||||
native/uiabridge/x64
|
.classpath
|
||||||
native/uiabridge/release
|
/.settings
|
||||||
native/uiabridge/Debug
|
|
||||||
!native/uiabridge/bin
|
|
||||||
!native/MsgHook/bin
|
|
||||||
!native/SetMsgHook/bin
|
|
||||||
|
|||||||
3
.project
3
.project
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<projectDescription>
|
<projectDescription>
|
||||||
<name>Synthuse</name>
|
<name>jna-test</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
</projects>
|
</projects>
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
</buildCommand>
|
</buildCommand>
|
||||||
</buildSpec>
|
</buildSpec>
|
||||||
<natures>
|
<natures>
|
||||||
|
<nature>org.springsource.ide.eclipse.gradle.core.nature</nature>
|
||||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
</natures>
|
</natures>
|
||||||
</projectDescription>
|
</projectDescription>
|
||||||
|
|||||||
11
build.gradle
Normal file
11
build.gradle
Normal file
@@ -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'
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user