summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2018-10-28 12:23:34 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2018-10-28 12:23:34 -0400
commit3d4603da0664461e6efa543d50788f12f8ff1c47 (patch)
treea79dc52be75d020576f04c640438ce8010ad17a2
parenta5b854189955aed457d4bad9d66203eebae0cd46 (diff)
General cleanup
-rw-r--r--JPratt/.classpath13
-rw-r--r--JPratt/pom.xml2
2 files changed, 13 insertions, 2 deletions
diff --git a/JPratt/.classpath b/JPratt/.classpath
index a22b331..27e6870 100644
--- a/JPratt/.classpath
+++ b/JPratt/.classpath
@@ -1,6 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src/main/java"/>
+ <classpathentry kind="src" output="target/classes" path="src/main/java">
+ <attributes>
+ <attribute name="optional" value="true"/>
+ <attribute name="maven.pomderived" value="true"/>
+ </attributes>
+ </classpathentry>
<classpathentry kind="src" path="src/examples/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
@@ -12,5 +17,11 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
+ <classpathentry kind="src" output="target/test-classes" path="src/test/java">
+ <attributes>
+ <attribute name="optional" value="true"/>
+ <attribute name="maven.pomderived" value="true"/>
+ </attributes>
+ </classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
diff --git a/JPratt/pom.xml b/JPratt/pom.xml
index eda649b..ec70958 100644
--- a/JPratt/pom.xml
+++ b/JPratt/pom.xml
@@ -7,7 +7,7 @@
<name>JPratt</name>
<description>Pratt parser in java</description>
<build>
- <sourceDirectory>src</sourceDirectory>
+ <sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>