Skip to content

Commit 802d1e9

Browse files
committed
Add Eclipse settings files with Gradle nature
1 parent e8262dc commit 802d1e9

File tree

5 files changed

+44
-25
lines changed

5 files changed

+44
-25
lines changed

.classpath

+19-24
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4-
<classpathentry kind="src" path="src"/>
5-
<classpathentry kind="src" path="test"/>
6-
<classpathentry kind="src" path="testFunctional"/>
7-
<classpathentry kind="lib" path="gdal.jar"/>
8-
<classpathentry kind="lib" path="gluegen-rt-natives-linux-amd64.jar"/>
9-
<classpathentry kind="lib" path="gluegen-rt-natives-linux-i586.jar"/>
10-
<classpathentry kind="lib" path="gluegen-rt-natives-macosx-universal.jar"/>
11-
<classpathentry kind="lib" path="gluegen-rt-natives-windows-amd64.jar"/>
12-
<classpathentry kind="lib" path="gluegen-rt-natives-windows-i586.jar"/>
13-
<classpathentry kind="lib" path="gluegen-rt.jar"/>
14-
<classpathentry kind="lib" path="jackson-core-asl.jar"/>
15-
<classpathentry kind="lib" path="jogl-all-natives-linux-amd64.jar"/>
16-
<classpathentry kind="lib" path="jogl-all-natives-linux-i586.jar"/>
17-
<classpathentry kind="lib" path="jogl-all-natives-macosx-universal.jar"/>
18-
<classpathentry kind="lib" path="jogl-all-natives-windows-amd64.jar"/>
19-
<classpathentry kind="lib" path="jogl-all-natives-windows-i586.jar"/>
20-
<classpathentry kind="lib" path="jogl-all.jar"/>
21-
<classpathentry kind="lib" path="junit-4.5.jar"/>
22-
<classpathentry kind="lib" path="vpf-symbols.jar"/>
23-
<classpathentry kind="output" path="bin"/>
24-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="bin/main" path="src">
4+
<attributes>
5+
<attribute name="gradle_scope" value="main"/>
6+
<attribute name="gradle_used_by_scope" value="main,test"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="src" output="bin/test" path="test">
10+
<attributes>
11+
<attribute name="gradle_scope" value="test"/>
12+
<attribute name="gradle_used_by_scope" value="test"/>
13+
<attribute name="test" value="true"/>
14+
</attributes>
15+
</classpathentry>
16+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
17+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
18+
<classpathentry kind="output" path="bin/default"/>
19+
</classpath>

.project

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>WorldWindJava</name>
3+
<name>worldwind</name>
44
<comment></comment>
55
<projects>
66
</projects>
@@ -10,8 +10,14 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
1318
</buildSpec>
1419
<natures>
1520
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
1622
</natures>
1723
</projectDescription>
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
arguments=
2+
auto.sync=false
3+
build.scans.enabled=false
4+
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
5+
connection.project.dir=
6+
eclipse.preferences.version=1
7+
gradle.user.home=
8+
java.home=
9+
jvm.arguments=
10+
offline.mode=false
11+
override.workspace.settings=false
12+
show.console.view=false
13+
show.executions.view=false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8

bin/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/main/
2+
/test/
3+
/default/

0 commit comments

Comments
 (0)