This GitLab CI configuration is valid. Learn more
.gitlab-ci.yml 159 bytes
image: maven:3.3-jdk-8
build:
  stage: build
  script:
    - mvn compile
test:
  stage: test
  script:
    - mvn test
cache:
  paths:
    - .m2/repository/