image: maven:latest variables: MAVEN_CLI_OPTS: "--batch-mode" MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository" cache: paths: - .m2/repository/ - target/ build: stage: build script: - 'mvn $MAVEN_CLI_OPTS test-compile' - mvn $MAVEN_CLI_OPTS clean install tags: - OracleJDK1.8