1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

updates README for new project layout

This commit is contained in:
John J. Aylward 2016-06-16 23:59:34 -04:00
parent 46a1c9acf9
commit c5deff636b

View file

@ -29,15 +29,22 @@ git clone https://github.com/stleary/JSON-Java-unit-test.git .
\# Create a directory structure for the JSON-Java code \# Create a directory structure for the JSON-Java code
```` ````
# Windows version # Windows version
md /s src\org\json md /s src\main\java\org\json
# *nix version
mkdir -p src/main/java/org/json
```` ````
\# clone JSON-Java \# clone JSON-Java
```` ````
git clone https://github.com/stleary/JSON-Java.git src\org\json #Windows version
git clone https://github.com/stleary/JSON-Java.git src\main\java\org\json
#*Nix version
git clone https://github.com/stleary/JSON-Java.git src/main/java/org/json
```` ````
\# Build, then execute the unit tests and code coverage \# Build, then execute the unit tests and code coverage
```` ````
gradle clean build test jacocoTestReport gradle clean build test jacocoTestReport
```` ````
Unit test results will be in build\reports\tests\index.html<br> Unit test results will be in build\reports\tests\index.html<br>
Code coverage will be in build\reports\jacoco\html\index.html Code coverage will be in build\reports\jacoco\html\index.html