Skip to content

Commit c836a35

Browse files
author
Mark A. Matney, Jr
committed
Fix first-time build instructions in README
1 parent e620b73 commit c836a35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ There are two sets of build instructions: one for systems with [Maven](https://m
1212

1313
To build the project the first time, type:
1414

15-
./mvnw validate verify
15+
./mvnw validate && ./mvnw verify
1616

1717
To run the service locally, type:
1818

@@ -26,7 +26,7 @@ To process one of the test CSVs, you can copy a CSV file from `src/test/resource
2626

2727
To build the project the first time, type:
2828

29-
mvn validate verify
29+
mvn validate && mvn verify
3030

3131
To run the service locally, type:
3232

@@ -38,7 +38,7 @@ To process one of the test CSVs, you can copy a CSV file from `src/test/resource
3838

3939
## Additional instructions
4040

41-
The `validate` argument only needs to be supplied to the mvn(w) command on the first run. After that, `mvn(w) verify` (or `mvn(w) package`) will work fine. Also, the build automatically happens when you run `mvn(w) -Plive test` so you don't need to repeat both steps just to run a test after the initial run.
41+
`mvn(w) validate` only needs to be run once, in order to build the project for the first time. After that, `mvn(w) verify` (or `mvn(w) package`) will work fine. Also, the build automatically happens when you run `mvn(w) -Plive test` so you don't need to repeat both steps just to run a test after the initial run.
4242

4343
## Running in production
4444

0 commit comments

Comments
 (0)