Skip to content
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.

Commit

Permalink
Fixed classpath property in examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
code-disaster committed Nov 25, 2015
1 parent e9b67cc commit 58c2520
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion example-config-linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"platform": "linux64",
"jdk": "/home/badlogic/Downloads/openjdk-1.7.0-u45-unofficial-icedtea-2.4.3-linux-amd64-image.zip",
"executable": "myapp",
"classpath": "target/packr-2.0-SNAPSHOT.jar",
"classpath": [
"target/packr-2.0-SNAPSHOT.jar"
],
"mainclass": "com.badlogicgames.packr.TestApp",
"vmargs": [
"-Xmx1G"
Expand Down
4 changes: 3 additions & 1 deletion example-config-mac.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"platform": "mac",
"jdk": "/Users/badlogic/Downloads/openjdk-1.7.0-u45-unofficial-icedtea-2.4.3-macosx-x86_64-image.zip",
"executable": "myapp",
"classpath": "target/packr-1.2-SNAPSHOT.jar",
"classpath": [
"target/packr-2.0-SNAPSHOT.jar"
],
"mainclass": "com.badlogicgames.packr.TestApp",
"vmargs": [
"-Xmx1G"
Expand Down
4 changes: 3 additions & 1 deletion example-config-windows.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"platform": "windows",
"jdk": "C:/Users/badlogic/Downloads/openjdk-1.7.0-u45-unofficial-icedtea-2.4.3-windows-i586-image.zip",
"executable": "myapp",
"classpath": "target/packr-1.0-SNAPSHOT.jar",
"classpath": [
"target/packr-2.0-SNAPSHOT.jar"
],
"mainclass": "com.badlogicgames.packr.TestApp",
"vmargs": [
"-Xmx1G"
Expand Down

0 comments on commit 58c2520

Please sign in to comment.