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:
parent
46a1c9acf9
commit
c5deff636b
1 changed files with 9 additions and 2 deletions
11
README.md
11
README.md
|
@ -29,15 +29,22 @@ git clone https://github.com/stleary/JSON-Java-unit-test.git .
|
|||
\# Create a directory structure for the JSON-Java code
|
||||
````
|
||||
# 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
|
||||
````
|
||||
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
|
||||
````
|
||||
gradle clean build test jacocoTestReport
|
||||
|
||||
````
|
||||
Unit test results will be in build\reports\tests\index.html<br>
|
||||
Code coverage will be in build\reports\jacoco\html\index.html
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue