Check in .classpath files because eclipse sets wrong dir for .class files

This commit is contained in:
Andrew Guibert 2018-01-28 15:07:04 -06:00
parent e93cdce976
commit ef426eaca0
3 changed files with 24 additions and 1 deletions

1
.gitignore vendored
View File

@ -6,7 +6,6 @@ build
.vscode .vscode
/*/bin/ /*/bin/
/*/build/ /*/build/
/*/.classpath
/*/.project /*/.project
/*/.settings/org.eclipse.jdt.core.prefs /*/.settings/org.eclipse.jdt.core.prefs
/*/.settings/org.eclipse.wst.common.component /*/.settings/org.eclipse.wst.common.component

12
game-service/.classpath Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer">
<attributes>
<attribute name="org.eclipse.jst.component.nondependency" value=""/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="build/classes/java/main"/>
</classpath>

12
player-service/.classpath Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer">
<attributes>
<attribute name="org.eclipse.jst.component.nondependency" value=""/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="build/classes/java/main"/>
</classpath>