File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,18 +29,19 @@ Pull requests are always welcome! Best is if you added a unit test to show that
29
29
30
30
Fastest: clone the repo and issue the following command.
31
31
```
32
- $ mvn clean package -Dmaven.javadoc.skip=true -DskipTests
32
+ $ mvn clean package -Dmaven.javadoc.skip=true -DskipTests -PskipBundlePlugin
33
33
```
34
34
35
35
Slower: if you only want to skip the acceptance test suite:
36
36
```
37
- $ mvn clean package -Dmaven.javadoc.skip=true -DskipAT=true
37
+ $ mvn clean package -Dmaven.javadoc.skip=true -DskipAT=true -PskipBundlePlugin
38
38
```
39
39
40
40
Slow: if you want to run all tests:
41
41
```
42
- $ mvn clean package -Dmaven.javadoc.skip=true
42
+ $ mvn clean package -Dmaven.javadoc.skip=true -PskipBundlePlugin
43
43
```
44
+ NB: If you want to use the resulting JARs in an OSGi environment you'll have to omit the ` -PskipBundlePlugin ` option.
44
45
45
46
## configuration options
46
47
https://rawgit.com/quickfix-j/quickfixj/master/quickfixj-core/src/main/doc/usermanual/usage/configuration.html
You can’t perform that action at this time.
0 commit comments