OpenShift3 allows to build a container from a Github repository using the concept of "S2I - Source to Image".
For example:
oc new-app codecentric/springboot-maven3-centos~https://github.com/cbelleza/spring-boot-samples.git --context-dir=spring-boot-basewebapp
Is there any way to inform what Maven goals should be executed during that building?
How can I set what JVM parameters my application needs to be started such as -DXbootclasspath:, -Dfile.encoding, etc?