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

archetype-resources..travis.yml Maven / Gradle / Ivy

There is a newer version: 1.2.21
Show newest version
# Travis CI Configuration file
# @link https://travis-ci.org/

# Using Java for the project
language: java
matrix:
  include:
    # Code artifacts and documentation deployed with JDK8
    - jdk: oraclejdk8
      env: DEPLOY=true DEPLOY_DOCS=true

before_install:
  # Gets scripts
  - git clone -b v1.2.2 --single-branch https://github.com/Bernardo-MG/ci-shell-scripts.git ~/.scripts
  # Sets scripts as executable
  - chmod -R +x ~/.scripts/*
  # Prepares CI environment
  - source ~/.scripts/travis/load-travis-environment.sh
before_script:
  # Creates Maven settings
  - ~/.scripts/java/maven/create-maven-settings.sh $VERSION_TYPE
script:
  # Unit and integration tests are run
  - mvn clean verify
after_success:
  # Documentation deployment script
  - ~/.scripts/java/maven/deploy-site.sh $DO_DEPLOY_DOCS deployment
  # Code artifacts deployment script
  - ~/.scripts/java/maven/deploy.sh $DO_DEPLOY deployment




© 2015 - 2024 Weber Informatics LLC | Privacy Policy