Game can now be run using java -jar GoGame.jar.

Rather than relying on the kgsGtp.jar application to run GoGame,
the GoGame agent calls the GtpClient using PipedInput/OutputStreams.
This commit is contained in:
cs6601
2012-09-06 09:43:32 -04:00
parent d4acc5beda
commit ca6863b43e
8 changed files with 110 additions and 74 deletions

View File

@@ -48,7 +48,8 @@
<jar jarfile="${dist}/GoGame.jar">
<fileset dir="${build}" excludes="**/*Test.class" />
<manifest>
<attribute name="Main-Class" value="cs6601.p1.GoGame" />
<attribute name="Main-Class" value="net.woodyfolsom.msproj.GoGame" />
<attribute name="Class-Path" value="kgsGtp.jar log4j-1.2.16.jar"/>
</manifest>
</jar>
</target>