Skip to content
This repository was archived by the owner on Nov 11, 2022. It is now read-only.

Commit e2125f7

Browse files
committed
Merge pull request #139 from dhalperi/backport-27
Backport apache/beam#27
2 parents 0bc381b + a3b05ff commit e2125f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,5 @@ install:
3030
- travis_retry mvn install clean -U -DskipTests=true
3131

3232
script:
33-
- travis_retry mvn versions:set -DnewVersion=manual_build
34-
- travis_retry mvn $MAVEN_OVERRIDE verify -U
33+
- travis_retry mvn $MAVEN_OVERRIDE install -U
3534
- travis_retry travis/test_wordcount.sh

travis/test_wordcount.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ set -e
1818
set -o pipefail
1919

2020
PASS=1
21-
JAR_FILE=examples/target/google-cloud-dataflow-java-examples-all-bundled-manual_build.jar
21+
VERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\[')
22+
JAR_FILE=examples/target/google-cloud-dataflow-java-examples-all-bundled-${VERSION}.jar
2223

2324
function check_result_hash {
2425
local name=$1

0 commit comments

Comments
 (0)