'mvn clean verify -Dprofile=docker' will run the test against services started with docker-compose. 'mvn clean verify -Dprofile=kubernetes' will run the test against services started with kubernetes.
For custom values for gateway and sso hosts:
export GATEWAY_HOST=: export SSO_HOST=: export REALM=springboot
To run all tests:
mvn clean install -DskipTests && mvn clean verify
Or to run just runtime:
mvn clean install -DskipTests && mvn -pl '!apps-acceptance-tests,!multiple-runtime-acceptance-tests,!security-policies-acceptance-tests,!shared-acceptance-tests' clean verify