Merge pull request #14 from ghost/master
Make DroidQuest be available on Ubuntu14.04
This commit is contained in:
commit
b9b71697d8
@ -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
11
pom.xml
@ -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
Executable file
1
start_game.sh
Executable file
@ -0,0 +1 @@
|
||||
mvn exec:java -Dexec.mainClass=com.droidquest.DQ
|
Loading…
Reference in New Issue
Block a user