Openshift CI / CD,用于带有Maven的简单Java SpringBoot应用程序 该项目使用Maven处理Java应用程序的基本CI / CD 要在安装了Maven的情况下在本地运行: mvn test // to run the unit tests mvn clean test spring-boot:run // to build, test and run the application mvn package //to build the jar file of this SpringBoot app 要使用s2i将应用程序直接部署到Openshift中,可以使用以下方法: oc new-app --name=loyalty java~https://github.com/osa-ora/simple_java_maven oc expose svc/lo