diff --git a/README.md b/README.md index c3cef4f..2089d81 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,24 @@ Java Apple Computer Emulator ==== -[Version 2.0b Source Tarball](https://github.com/badvision/jace/archive/v2.0b.tar.gz) +Download: + +* [Version 2.0 Snapshot](target/jace-2.0-SNAPSHOT.jar) + +Or: + +* [Version 2.0 Snapshot with dependencies](target/jace-2.0-SNAPSHOT-jar-with-dependencies.jar) + +To Run: + +* See [run.sh](run.sh) + +or `java -jar target/jace-2.0-SNAPSHOT-jar-with-dependencies.jar` + +To Build: + +* See [build.sh](build.sh) + [Download current version with built-in IDE](https://github.com/badvision/jace/releases/download/v2.0b/jace-2.0-SNAPSHOT.zip) diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..f0d43b4 --- /dev/null +++ b/run.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +#java -jar target/jace-2.0-SNAPSHOT.jar + +# http://stackoverflow.com/questions/9689793/cant-execute-jar-file-no-main-manifest-attribute +#java -cp target/jace-2.0-SNAPSHOT.jar jace.JaceApplication + +java -jar target/jace-2.0-SNAPSHOT-jar-with-dependencies.jar +