Skip to content

Commit c5deff6

Browse files
author
John J. Aylward
committed
updates README for new project layout
1 parent 46a1c9a commit c5deff6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,22 @@ git clone https://github.com/stleary/JSON-Java-unit-test.git .
2929
\# Create a directory structure for the JSON-Java code
3030
````
3131
# Windows version
32-
md /s src\org\json
32+
md /s src\main\java\org\json
33+
# *nix version
34+
mkdir -p src/main/java/org/json
3335
````
3436
\# clone JSON-Java
3537
````
36-
git clone https://github.com/stleary/JSON-Java.git src\org\json
38+
#Windows version
39+
git clone https://github.com/stleary/JSON-Java.git src\main\java\org\json
40+
41+
#*Nix version
42+
git clone https://github.com/stleary/JSON-Java.git src/main/java/org/json
3743
````
3844
\# Build, then execute the unit tests and code coverage
3945
````
4046
gradle clean build test jacocoTestReport
47+
4148
````
4249
Unit test results will be in build\reports\tests\index.html<br>
4350
Code coverage will be in build\reports\jacoco\html\index.html

0 commit comments

Comments
 (0)