.gitlab-ci.yml 231 Bytes
Newer Older
Maxime Lefrançois's avatar
Maxime Lefrançois committed
image: maven:3.6.2-jdk-8

build:
  stage: build
  script:
    - mvn help:system ; javac -v
    - export PATH=$PATH:$JAVA_HOME/bin/
Maxime Lefrançois's avatar
Maxime Lefrançois committed
    - mvn package
  artifacts:
    paths:
Maxime Lefrançois's avatar
Maxime Lefrançois committed
      - target/saref-pipeline.jar
Maxime Lefrançois's avatar
Maxime Lefrançois committed
  only:
    - master