From 7ca1e3e4a3cdb5d421f601027378eca473fe92a5 Mon Sep 17 00:00:00 2001 From: Solargale Date: Thu, 11 Apr 2019 14:29:32 -0600 Subject: [PATCH 1/3] Updated with the correct complication stuff --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81e6c57..66cf8f0 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ Then, run MainGUI.java. If you are using the command line, extract "TaipanClone-master.zip", and open the "TaipanClone-master" folder. Open your terminal and change its directory to the "src" folder within "TaipanClone-master" folder. -Then, type in "javac -cp .:junit-4.12.jar:hamcrest-core-1.3.jar *.java", this compiles all the necessary files. Now, run MainGUI.java using "java MainGUI". +Then, type in "javac -cp .;junit-4.12.jar;hamcrest-core-1.3.jar gui/*.java text/*java logic/*.java tests/*.java", this compiles all the necessary files. Now, run MainGUI.java using "java MainGUI". -To run the test file PlayerTest.java, type in "javac -cp .:junit-4.12.jar:hamcrest-core-1.3.jar *.java", this compiles all the necessary files. Now, run PlayerTest.java using "java PlayerTest". +To run the test file PlayerTest.java, type in "javac -cp .;junit-4.12.jar;hamcrest-core-1.3.jar gui/*.java text/*java logic/*.java tests/*.java", this compiles all the necessary files. Now, run PlayerTest.java using "java PlayerTest". Additional information: From dbf92288c5eb037437ef6a3139c61b32c8880850 Mon Sep 17 00:00:00 2001 From: Vikramb987 <47336882+Vikramb987@users.noreply.github.com> Date: Thu, 11 Apr 2019 14:41:57 -0600 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66cf8f0..146b912 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Then, run MainGUI.java. If you are using the command line, extract "TaipanClone-master.zip", and open the "TaipanClone-master" folder. Open your terminal and change its directory to the "src" folder within "TaipanClone-master" folder. -Then, type in "javac -cp .;junit-4.12.jar;hamcrest-core-1.3.jar gui/*.java text/*java logic/*.java tests/*.java", this compiles all the necessary files. Now, run MainGUI.java using "java MainGUI". +Then, type in "javac -cp .:junit-4.12.jar:hamcrest-core-1.3.jar:jfxrt.jar gui/*.java text/*.java logic/*.java tests/*.java", this compiles all the necessary files. Now, run MainGUI.java using "java MainGUI". To run the test file PlayerTest.java, type in "javac -cp .;junit-4.12.jar;hamcrest-core-1.3.jar gui/*.java text/*java logic/*.java tests/*.java", this compiles all the necessary files. Now, run PlayerTest.java using "java PlayerTest". From 36a89bc713de05033babb76629e8cbcd8cf01ce2 Mon Sep 17 00:00:00 2001 From: Vikramb987 <47336882+Vikramb987@users.noreply.github.com> Date: Thu, 11 Apr 2019 14:46:48 -0600 Subject: [PATCH 3/3] epic style fixes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 146b912..3f80750 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ Then, run MainGUI.java. If you are using the command line, extract "TaipanClone-master.zip", and open the "TaipanClone-master" folder. Open your terminal and change its directory to the "src" folder within "TaipanClone-master" folder. -Then, type in "javac -cp .:junit-4.12.jar:hamcrest-core-1.3.jar:jfxrt.jar gui/*.java text/*.java logic/*.java tests/*.java", this compiles all the necessary files. Now, run MainGUI.java using "java MainGUI". +Then, type in "javac -cp .:junit-4.12.jar:hamcrest-core-1.3.jar:jfxrt.jar gui/*.java text/*.java logic/*.java tests/*.java", this compiles all the necessary files. Now, run MainGUI.java using "java gui.MainGUI". -To run the test file PlayerTest.java, type in "javac -cp .;junit-4.12.jar;hamcrest-core-1.3.jar gui/*.java text/*java logic/*.java tests/*.java", this compiles all the necessary files. Now, run PlayerTest.java using "java PlayerTest". +To run the test file PlayerTest.java, type in "javac -cp .:junit-4.12.jar:hamcrest-core-1.3.jar:jfxrt.jar gui/*.java text/*.java logic/*.java tests/*.java", this compiles all the necessary files. Now, run PlayerTest.java using "java -cp .:junit-4.12.jar:hamcrest-core-1.3.jar org.junit.runner.JUnitCore tests.PlayerTest". Additional information: