summaryrefslogtreecommitdiff
path: root/.classpath
diff options
context:
space:
mode:
authorAdrien Hopkins <ahopk127@my.yorku.ca>2021-03-27 16:36:39 -0500
committerAdrien Hopkins <ahopk127@my.yorku.ca>2021-03-27 16:36:39 -0500
commit2eee97c9e64dca79fc6b1614b304b398d25a7f4b (patch)
treef14d4237a3ce71d21d02b29719a5fb6595fe4091 /.classpath
parentfe4135a68cfed92ef336eec663e9c42c2c97dcbc (diff)
Added automatic building with Gradle
Diffstat (limited to '.classpath')
-rw-r--r--.classpath35
1 files changed, 17 insertions, 18 deletions
diff --git a/.classpath b/.classpath
index a6325e3..66f8050 100644
--- a/.classpath
+++ b/.classpath
@@ -1,33 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
- <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
- <classpathentry kind="src" output="target/classes" path="src">
+ <classpathentry kind="src" output="bin/main" path="src/main/java">
<attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
+ <attribute name="gradle_scope" value="main"/>
+ <attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
- <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
+ <classpathentry kind="src" output="bin/main" path="src/main/resources">
<attributes>
- <attribute name="maven.pomderived" value="true"/>
+ <attribute name="gradle_scope" value="main"/>
+ <attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
- <classpathentry kind="src" path="target/generated-sources/annotations">
+ <classpathentry kind="src" output="bin/test" path="src/test/java">
<attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- <attribute name="ignore_optional_problems" value="true"/>
- <attribute name="m2e-apt" value="true"/>
+ <attribute name="gradle_scope" value="test"/>
+ <attribute name="gradle_used_by_scope" value="test"/>
+ <attribute name="test" value="true"/>
</attributes>
</classpathentry>
- <classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
+ <classpathentry kind="src" output="bin/test" path="src/test/resources">
<attributes>
- <attribute name="optional" value="true"/>
- <attribute name="maven.pomderived" value="true"/>
- <attribute name="ignore_optional_problems" value="true"/>
- <attribute name="m2e-apt" value="true"/>
+ <attribute name="gradle_scope" value="test"/>
+ <attribute name="gradle_used_by_scope" value="test"/>
+ <attribute name="test" value="true"/>
</attributes>
</classpathentry>
- <classpathentry kind="output" path="target/classes"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
+ <classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
+ <classpathentry kind="output" path="bin/default"/>
</classpath>