Merge pull request #14 from ghost/master

Make DroidQuest be available on Ubuntu14.04
Este commit está contenido en:
Nathan Byrd 2016-10-28 17:34:59 -05:00 cometido por GitHub
commit b9b71697d8
Se han modificado 3 ficheros con 19 adiciones y 0 borrados

Ver fichero

@ -3,6 +3,13 @@ DroidQuest
A Java recreation of the classic game Robot Odyssey I
Compile command:
mvn compile
Run the game:
./start_game.sh
Copyright (c) 2000 Thomas Foote

11
pom.xml
Ver fichero

@ -16,6 +16,17 @@
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>5</source>
<target>5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>

1
start_game.sh Archivo ejecutable
Ver fichero

@ -0,0 +1 @@
mvn exec:java -Dexec.mainClass=com.droidquest.DQ