Merge pull request #14 from ghost/master

Make DroidQuest be available on Ubuntu14.04
This commit is contained in:
Nathan Byrd 2016-10-28 17:34:59 -05:00 committed by GitHub
commit b9b71697d8
3 changed files with 19 additions and 0 deletions

View File

@ -3,6 +3,13 @@ DroidQuest
A Java recreation of the classic game Robot Odyssey I 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 Copyright (c) 2000 Thomas Foote

11
pom.xml
View File

@ -16,6 +16,17 @@
<build> <build>
<sourceDirectory>src</sourceDirectory> <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> </build>
<dependencies> <dependencies>

1
start_game.sh Executable file
View File

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