Skip to content

Commit 6cdfdf8

Browse files
author
Thomas Weise
committed
Added ".classpath" to Ease Import into Eclipse
I now also commit the ".classpath" files of those projects which are not built with Maven. This eases importing them into Eclipse, as otherwise one would need to explicitly add the default Jave environment to the build path.
1 parent 2742c50 commit 6cdfdf8

File tree

7 files changed

+22
-15
lines changed

7 files changed

+22
-15
lines changed

.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,12 @@ hs_err_pid*
109109
/javaRMI/temp/
110110
/javaRMI/tmp/
111111
/javaRMI/bin/
112-
/javaRMI/.classpath
113112

114113
## XML
115114
/xml/java/target/
116115
/xml/java/temp/
117116
/xml/java/tmp/
118117
/xml/java/bin/
119-
/xml/java/.classpath
120118

121119
## web services
122120
### warehouse server example
@@ -190,4 +188,4 @@ mpi/gatherScatterPrimes.exe
190188
mpi/piGatherScatter.exe
191189
mpi/reducePrimes.exe
192190
mpi/structTest.exe
193-
mpi/structScatter.exe
191+
mpi/structScatter.exe

javaRMI/.classpath

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

javaRMI/.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@ hs_err_pid*
1414
/target/
1515

1616
# other files, potentially created by build tools
17-
/.classpath
1817
/bin
1918
/classes
2019
/build
2120
/temp
2221
/tmp
2322
/out
2423
/.gradle
25-
/dependency-reduced-pom.xml
24+
/dependency-reduced-pom.xml

sockets/java/.classpath

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<classpath>
3-
<classpathentry kind="src" path="src"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5-
<classpathentry kind="output" path="bin"/>
6-
</classpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

sockets/java/.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@ hs_err_pid*
1414
/target/
1515

1616
# other files, potentially created by build tools
17-
/.classpath
1817
/bin
1918
/classes
2019
/build
2120
/temp
2221
/tmp
2322
/out
2423
/.gradle
25-
/dependency-reduced-pom.xml
24+
/dependency-reduced-pom.xml

xml/java/.classpath

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

xml/java/.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@ hs_err_pid*
1414
/target/
1515

1616
# other files, potentially created by build tools
17-
/.classpath
1817
/bin
1918
/classes
2019
/build
2120
/temp
2221
/tmp
2322
/out
2423
/.gradle
25-
/dependency-reduced-pom.xml
24+
/dependency-reduced-pom.xml

0 commit comments

Comments
 (0)