Rename colors.sh -> logger.sh

This commit is contained in:
Andreas Dangel
2018-05-24 19:20:12 +02:00
parent 281f151197
commit 19d65171bd
6 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
set -e
source .travis/common-functions.sh
source .travis/colors.sh
source .travis/logger.sh
VERSION=$(./mvnw -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.5.0:exec | tail -1)
log_info "Building PMD Coveralls.io report ${VERSION} on branch ${TRAVIS_BRANCH}"

View File

@ -2,7 +2,7 @@
set -e
source .travis/common-functions.sh
source .travis/colors.sh
source .travis/logger.sh
function push_docs() {
if git diff --quiet docs; then

View File

@ -2,7 +2,7 @@
set -e
source .travis/common-functions.sh
source .travis/colors.sh
source .travis/logger.sh
VERSION=$(./mvnw -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.5.0:exec | tail -1)
log_info "Building PMD Documentation ${VERSION} on branch ${TRAVIS_BRANCH}"

View File

@ -2,7 +2,7 @@
set -e
source .travis/common-functions.sh
source .travis/colors.sh
source .travis/logger.sh
VERSION=$(./mvnw -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.5.0:exec | tail -1)
log_info "Building PMD Sonar ${VERSION} on branch ${TRAVIS_BRANCH}"

View File

@ -1,7 +1,7 @@
#!/bin/bash
set -e
source .travis/colors.sh
source .travis/logger.sh
echo "BUILD: $BUILD"
RELEASE_VERSION=$(./mvnw -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.5.0:exec | tail -1)