@@ -23,13 +23,13 @@ with the corresponding file here. Missing or extra files also fail the test.
23231 . Make your generator changes.
24242 . Rebuild the module to pick up the new code:
2525 ``` bash
26- mvn package -pl quickfixj-codegenerator -DskipTests
26+ ./mvnw package -pl quickfixj-codegenerator -DskipTests
2727 ```
28283 . Regenerate the golden files by running the generator against both dictionaries
2929 from the ` quickfixj-codegenerator ` directory:
3030 ``` bash
3131 # FIX42
32- java -cp " target/quickfixj-codegenerator-*-SNAPSHOT.jar:$( mvn -q dependency:build-classpath -DincludeScope=compile -Dmdep.outputFile=/dev/stdout) " \
32+ java -cp " target/quickfixj-codegenerator-*-SNAPSHOT.jar:$( ./mvnw -q dependency:build-classpath -DincludeScope=compile -Dmdep.outputFile=/dev/stdout) " \
3333 org.quickfixj.codegenerator.MessageCodeGenerator \
3434 --spec ../quickfixj-messages/quickfixj-messages-fix42/src/main/resources/FIX42.xml \
3535 --transform src/main/resources/org/quickfixj/codegenerator \
@@ -45,7 +45,7 @@ with the corresponding file here. Missing or extra files also fail the test.
4545 Alternatively, run the following Maven snippet from the repo root, which uses
4646 the same settings as the test:
4747 ``` bash
48- mvn test -pl quickfixj-codegenerator -Dtest=GenerateGoldenFilesManual
48+ ./mvnw test -pl quickfixj-codegenerator -Dtest=GenerateGoldenFilesManual
4949 ```
5050 * (Create a one-off test class that calls the generator and copies output to
5151 ` src/test/resources/golden/ ` if you prefer a scripted approach.)*
@@ -56,7 +56,7 @@ with the corresponding file here. Missing or extra files also fail the test.
5656 ```
57575 . Run the full test suite to confirm the updated golden files now match:
5858 ``` bash
59- mvn test -pl quickfixj-codegenerator
59+ ./mvnw test -pl quickfixj-codegenerator
6060 ```
61616 . Commit the updated golden files ** together with your generator changes** in the
6262 same commit (or PR) so reviewers can see the diff side-by-side.
0 commit comments