mvn verify -Pintegration-test
We should run this command automatically for pull request check.
New maven command options:
-DskipNpm-DskipDocs
so to make things start up faster, we can do for examples:
mvn jetty:run -DskipNpm -DskipDocs -DskipTestsmvn verify -Pintegration-test -DskipNpm -DskipDocs
Running integration tests:
mvn verify -Pintegration-test
We should run this command automatically for pull request check.New maven command options:
-DskipNpm
-DskipDocs
so to make things start up faster, we can do for examples:
mvn jetty:run -DskipNpm -DskipDocs -DskipTests
mvn verify -Pintegration-test -DskipNpm -DskipDocs