All Downloads are FREE. Search and download functionalities are using the official Maven repository.

archetype-resources..gitlab-ci.yml Maven / Gradle / Ivy

Go to download

Easily create configuration to document your project with this archetype

There is a newer version: 0.2.3
Show newest version
stages:
  - build

cache:
  paths:
    - .m2/repository

Build:
  stage: build
  image: maven:3.6-jdk-11
  before_script:
    - apt-get update
  script:
    # We force the value of the branch name, as it can't be obtained in Gitlab environment "for reasons"
    - mvn $MAVEN_CLI_OPTS clean verify
  artifacts:
    paths:
      - "target/**"
      - "target/*.jar"
      - "settings.xml"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy