Skip to content

Commit 493f18b

Browse files
committed
updated docs
1 parent 5077eb6 commit 493f18b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,27 +42,27 @@ Pull requests are always welcome! Best is if you added a unit test to show that
4242

4343
Fastest: clone the repo and issue the following command.
4444
```
45-
$ mvn clean package -Dmaven.javadoc.skip=true -DskipTests -PskipBundlePlugin,minimal-fix-latest -Djdk.xml.xpathExprGrpLimit=500 -Djdk.xml.xpathExprOpLimit=500
45+
$ mvnw clean package -Dmaven.javadoc.skip=true -DskipTests -PskipBundlePlugin,minimal-fix-latest
4646
```
4747

4848
Slower: if you only want to skip the acceptance test suite:
4949
```
50-
$ mvn clean package -Dmaven.javadoc.skip=true -DskipAT=true -PskipBundlePlugin,minimal-fix-latest -Djdk.xml.xpathExprGrpLimit=500 -Djdk.xml.xpathExprOpLimit=500
50+
$ mvnw clean package -Dmaven.javadoc.skip=true -DskipAT=true -PskipBundlePlugin,minimal-fix-latest
5151
```
5252

5353
Slow: if you want to run all tests:
5454
```
55-
$ mvn clean package -Dmaven.javadoc.skip=true -PskipBundlePlugin,minimal-fix-latest -Djdk.xml.xpathExprGrpLimit=500 -Djdk.xml.xpathExprOpLimit=500
55+
$ mvnw clean package -Dmaven.javadoc.skip=true -PskipBundlePlugin,minimal-fix-latest
5656
```
5757
NB: If you want to use the resulting JARs in an OSGi environment you'll have to omit the `-PskipBundlePlugin` option.
5858

5959
## importing the project into the IDE
6060

6161
When the project is first created, it will not have the generated message classes and compile errors will occur! Best is to compile once on the command line before importing the project into the IDE.
6262

63-
If the IDE reports some errors after the compilation with `mvn clean package`, try to use `mvn clean install`, like:
63+
If the IDE reports some errors after the compilation with `mvnw clean package`, try to use `mvnw clean install`, like:
6464
```
65-
$ mvn clean install -Dmaven.javadoc.skip=true -DskipTests -PskipBundlePlugin,minimal-fix-latest -Djdk.xml.xpathExprGrpLimit=500 -Djdk.xml.xpathExprOpLimit=500
65+
$ mvnw clean install -Dmaven.javadoc.skip=true -DskipTests -PskipBundlePlugin,minimal-fix-latest
6666
```
6767

6868
## configuration options

quickfixj-core/src/main/doc/usermanual/installation.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,15 @@ <h2><a name="build"></a>Building QuickFIX/J</h2>
153153
GitHub for more details on cloning the repository.</li>
154154
<li>Change directory to the top-level directory of the checked out code. You
155155
should see a pom.xml file.</li>
156-
<li>Run <code>mvn package</code> to build the QuickFIX/J and examples jar files.
156+
<li>Run <code>mvnw package</code> to build the QuickFIX/J and examples jar files.
157157
This will also generate all the FIX message-related code for the various
158158
FIX versions.</li>
159159
<li>There is an option for the code generator to use BigDecimal instead of double for fields like price and quantity.
160160
To enable this feature pass a <code>-Dgenerator.decimal</code> option on the command line when
161161
running the <code>generate.code</code> target.</li>
162162
</ol>
163163
<h3>Command-line Switches</h3>
164-
There are various command-line switches you can pass to mvn to modify the produced behavior:
164+
There are various command-line switches you can pass to mvnw to modify the produced behavior:
165165
<table cellspacing="0" width="100%">
166166
<tr>
167167
<th>Switch</th>
@@ -181,15 +181,15 @@ <h3>Command-line Switches</h3>
181181
</table>
182182
<p>
183183
For example, in order to generate fields with BigDecimals and skip acceptance tests:<br>
184-
<code>mvn test -Dgenerator.decimal=true -DskipAT=true</code>
184+
<code>mvnw test -Dgenerator.decimal=true -DskipAT=true</code>
185185
</p>
186186
<p>Find further details in the project <a href="https://github.com/quickfix-j/quickfixj#readme">readme</a></p>
187187
<h3>IDE support:</h3>
188188
<p><em style="color:red">When the project is first created, it will not have the generated message classes
189189
and compile errors will occur!</em> Best is to compile once on the command line before importing
190190
the project into the IDE.
191191

192-
If the IDE reports some errors after the compilation with <code>mvn package</code>, try to use <code>mvn install</code> .
192+
If the IDE reports some errors after the compilation with <code>mvnw package</code>, try to use <code>mvnw install</code> .
193193

194194
<h3>Maven Integration:</h3>
195195
<p>If you are using the <a href="http://maven.apache.org">Maven</a> build system, you can reference

0 commit comments

Comments
 (0)