diff options
author | Adrien Hopkins <ahopk127@my.yorku.ca> | 2021-05-22 14:05:44 -0500 |
---|---|---|
committer | Adrien Hopkins <ahopk127@my.yorku.ca> | 2021-05-22 14:05:44 -0500 |
commit | 8645325803f8580c823cc4c2cec2ad76906b52bb (patch) | |
tree | fff893611dfd82aca4af5e677ab782045d5543d9 /.classpath | |
parent | 184b7cc697ffc2dcbd49cfb3d0fd7b14bdac8803 (diff) | |
parent | 277500e27010839e03659870bc5890f1535aa8c8 (diff) |
Merge branch 'develop' into feature-settings-tab
Diffstat (limited to '.classpath')
-rw-r--r-- | .classpath | 35 |
1 files changed, 17 insertions, 18 deletions
@@ -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> |