[LIB-9] Separate chesshog-hedgefish module
authorgotty <gotty@hedgecode.org>
Fri, 19 Apr 2019 02:30:41 +0000 (05:30 +0300)
committergotty <gotty@hedgecode.org>
Fri, 19 Apr 2019 02:30:41 +0000 (05:30 +0300)
chesshog-hedgefish/pom.xml [new file with mode: 0644]
chesshog-hedgefish/src/main/java/org/hedgecode/chess/hedgefish/HedgefishCommand.java [moved from src/main/java/org/hedgecode/chess/hedgefish/HedgefishCommand.java with 100% similarity]
chesshog-hedgefish/src/main/java/org/hedgecode/chess/hedgefish/HedgefishEngine.java [moved from src/main/java/org/hedgecode/chess/hedgefish/HedgefishEngine.java with 100% similarity]
chesshog-hedgefish/src/main/java/org/hedgecode/chess/hedgefish/HedgefishEngineRunner.java [moved from src/main/java/org/hedgecode/chess/hedgefish/HedgefishEngineRunner.java with 100% similarity]
chesshog-hedgefish/src/main/java/org/hedgecode/chess/hedgefish/HedgefishTransmitter.java [moved from src/main/java/org/hedgecode/chess/hedgefish/HedgefishTransmitter.java with 100% similarity]
chesshog-hedgefish/src/main/java/org/hedgecode/chess/hedgefish/Types.java [moved from src/main/java/org/hedgecode/chess/hedgefish/Types.java with 100% similarity]
chesshog-hedgefish/src/main/java/org/hedgecode/chess/hedgefish/UCI.java [moved from src/main/java/org/hedgecode/chess/hedgefish/UCI.java with 100% similarity]

diff --git a/chesshog-hedgefish/pom.xml b/chesshog-hedgefish/pom.xml
new file mode 100644 (file)
index 0000000..ef93be5
--- /dev/null
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  ~ Copyright (c) 2018. Developed by Hedgecode.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~   http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.hedgecode.chess</groupId>
+        <artifactId>chesshog</artifactId>
+        <version>0.1-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>chesshog-hedgefish</artifactId>
+    <version>0.1-SNAPSHOT</version>
+    <packaging>jar</packaging>
+
+    <name>Hedgecode ChessHog Hedgefish</name>
+    <description>
+        Hedgecode ChessHog Hedgefish Module.
+    </description>
+
+    <properties>
+        <chessHogVersion>0.1-SNAPSHOT</chessHogVersion>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.hedgecode.chess</groupId>
+            <artifactId>chesshog</artifactId>
+            <version>${chessHogVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.hedgecode.chess</groupId>
+            <artifactId>chesshog-core</artifactId>
+            <version>${chessHogVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.hedgecode.chess</groupId>
+            <artifactId>chesshog-uci</artifactId>
+            <version>${chessHogVersion}</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file