The how to run page states to run one can use the -Dembedded switch:
mvn clean install -Dembedded=true
This didn't work for me and during my research for a solution I stumbled upon a SO post (by yours truly Christoph ;)) that suggested to use another switch:
mvn clean install -Dsystem.under.test.mode=embedded -fae
If you can point me to the file, I'll open a PR to update the page.
On another note, I had to build the todo app separately first:
mvn clean install -pl :citrus-sample-todo
because when I ran mvn clean install as suggested in the page, I got a a test failure in the bakery-web module. It seems that the the connection to the app couldn't be established. Not sure what was the problem there. I ran the tests for the http-samples directly which went fine.
The how to run page states to run one can use the -Dembedded switch:
mvn clean install -Dembedded=true
This didn't work for me and during my research for a solution I stumbled upon a SO post (by yours truly Christoph ;)) that suggested to use another switch:
mvn clean install -Dsystem.under.test.mode=embedded -fae
If you can point me to the file, I'll open a PR to update the page.
On another note, I had to build the todo app separately first:
mvn clean install -pl :citrus-sample-todo
because when I ran mvn clean install as suggested in the page, I got a a test failure in the bakery-web module. It seems that the the connection to the app couldn't be established. Not sure what was the problem there. I ran the tests for the http-samples directly which went fine.
mvn clean install -pl :citrus-sample-http -Dsystem.under.test.mode=embedded
mvn clean install output: