blob: 27bd88b30600abd54fd5cd60abfe9c7d69f4b0ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<!-- Defines your source folder -->
<classpathentry kind="src" output="bin/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="bin/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="test" value="true"/>
</attributes>
<classpathentry kind="prj" path="/guess-market-api">
</classpathentry>
</classpathentry>
<!-- Defines the standard Java System Library -->
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<!-- Defines where compiled .class files go -->
<classpathentry kind="output" path="bin"/>
</classpath>
|