We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8f2ed commit f8f091bCopy full SHA for f8f091b
.travis.yml
@@ -9,13 +9,13 @@ cache:
9
- ~/.m2/repository
10
11
before_install:
12
- - chmod +x ./deploying/*.sh
13
- - ./deploying/pre-deploy.sh
+ - chmod +x $TRAVIS_BUILD_DIR/deploying/*.sh
+ - $TRAVIS_BUILD_DIR/deploying/pre-deploy.sh
14
install:
15
- mvn install -P !build-extras -DskipTests=true -Dmaven.javadoc.skip=true -B
16
- mvn dependency:go-offline -P !build-extras -DskipTests=true -Dmaven.javadoc.skip=true -B
17
script:
18
- mvn test -P !build-extras -B
19
20
after_success:
21
- - ./deploying/deploy.sh
+ - $TRAVIS_BUILD_DIR/deploying/deploy.sh
0 commit comments