Skip to content

Commit

Permalink
maven
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWang18 committed Jan 21, 2021
1 parent 71bebf9 commit b7a3d4d
Show file tree
Hide file tree
Showing 27 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<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.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
Expand Down
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# ignore json file types
*.json
/target/
/settings/
# Compiled class file
*.class


# Log file
*.log
Expand All @@ -15,7 +14,6 @@
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
Expand Down
6 changes: 3 additions & 3 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
org.eclipse.jdt.core.compiler.processAnnotations=disabled
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
org.eclipse.jdt.core.compiler.source=11
7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <!-- had to change jre version to 1.8 -->
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target> <!-- had to change jre version to 1.8 -->
</properties>

<dependencies>
Expand Down Expand Up @@ -85,8 +85,7 @@
<configuration>
<archive>
<manifest>
<addClassPath>true</addClassPath>
<mainClass>domain.UserInterface.App</mainClass>
<mainClass>src.main.java.domain.UserInterface.App</mainClass>
</manifest>
</archive>
<descriptorRefs>
Expand Down
Binary file modified target/classes/domain/Logic/Board.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Color$ColorType.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Color.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Error.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Errors.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Game.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Message.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Move.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Pair.class
Binary file not shown.
Binary file modified target/classes/domain/Logic/Square.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Bishop.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/King.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Knight.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Pawn.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Piece.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/PieceType.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Queen.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Rook.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Visitor/ClassicRules.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Visitor/NoRules.class
Binary file not shown.
Binary file modified target/classes/domain/Pieces/Visitor/Visitor.class
Binary file not shown.
Binary file modified target/classes/domain/UserInterface/App.class
Binary file not shown.
Binary file modified target/classes/domain/UserInterface/UI.class
Binary file not shown.

0 comments on commit b7a3d4d

Please sign in to comment.