diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0fd7bd56..bbbc60f0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,5 @@ image: maven:latest -variables: - MAVEN_CLI_OPTS: "-s .m2/settings.xml --batch-mode" - MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository" - cache: paths: - .m2/repository/ @@ -12,9 +8,9 @@ cache: build: stage: build script: - - mvn $MAVEN_CLI_OPTS compile + - mvn compile test: stage: test script: - - mvn $MAVEN_CLI_OPTS test \ No newline at end of file + - mvn test \ No newline at end of file