diff options
author | Albert Pham <the.sk89q@gmail.com> | 2014-03-21 16:17:17 -0700 |
---|---|---|
committer | Albert Pham <the.sk89q@gmail.com> | 2014-03-21 16:17:17 -0700 |
commit | 1dc138ce8841ed8124605b0b4ba891cf584c8f18 (patch) | |
tree | 4bbb24981acc4d00af36bc33eae9592bd4cff593 | |
parent | 0639e03c2de59bf007f97106e4dd704bcec97507 (diff) | |
download | spark-1dc138ce8841ed8124605b0b4ba891cf584c8f18.tar.gz spark-1dc138ce8841ed8124605b0b4ba891cf584c8f18.tar.bz2 spark-1dc138ce8841ed8124605b0b4ba891cf584c8f18.zip |
Improved README
-rw-r--r-- | README.md | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -26,9 +26,9 @@ Usage 1. Note the path of your JDK. -2. Download WarmRoast as `warmroast.jar`. +2. Download WarmRoast. -3. Replace `/path/to/jdk` in the following command line with the path to your JDK and execute the program. +3. Replace `PATH_TO_JDK` in the following commands with the path to your JDK and execute the program. **Note:** The example command line below includes `--thread "Server thread"`, which filters all threads but the main server thread. You can remove it to show all threads. @@ -36,11 +36,13 @@ Usage ### Linux ### - java -Djava.library.path=/path/to/jdk/jre/bin -cp /path/to/jdk/lib/tools.jar:warmroast.jar com.sk89q.warmroast.WarmRoast --thread "Server thread" + java -Djava.library.path=PATH_TO_JDK/jre/bin -cp /path/to/jdk/lib/tools.jar:warmroast-1.0.0-SNAPSHOT.jar com.sk89q.warmroast.WarmRoast --thread "Server thread" ### Windows ### - java -Djava.library.path=/path/to/jdk/jre/bin -cp /path/to/jdk/lib/tools.jar;warmroast.jar com.sk89q.warmroast.WarmRoast --thread "Server thread" +An example `PATH_TO_JDK` would be `C:\Program Files\Java\jdk1.7.0_45` + + java -Djava.library.path=PATH_TO_JDK/jre/bin -cp PATH_TO_JDK/lib/tools.jar;warmroast-1.0.0-SNAPSHOT.jar com.sk89q.warmroast.WarmRoast --thread "Server thread" Parameters ---------- @@ -82,8 +84,4 @@ Hint: `--thread "Server thread"` is useful for Minecraft servers. License ------- -The launcher is licensed under the GNU General Public License, version 3. - -Contributions by third parties must be dual licensed under the two licenses -described within LICENSE.txt (GNU General Public License, version 3, and the -3-clause BSD license). +The project is licensed under the GNU General Public License, version 3. |