File tree Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ phases:
4
4
build :
5
5
commands :
6
6
- mvn clean install -Dmaven.wagon.httpconnectionManager.maxPerRoute=2
7
- - JAVA_VERSION=$(java -version 2>&1 | head -n 1 | cut -d\" -f 2 )
7
+ - JAVA_VERSION=$(java -version 2>&1 | grep -i version | cut -d'"' -f2 | cut -d'.' -f1-1 )
8
8
- echo $JAVA_VERSION
9
9
- |
10
- if [ "$JAVA_VERSION" \> "9" ]; then
10
+ if [ "$JAVA_VERSION" -ge "9" ]; then
11
11
cd test/module-path-tests
12
12
mvn package
13
13
mvn exec:exec -P mock-tests
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ phases:
4
4
build :
5
5
commands :
6
6
- mvn clean verify -Dskip.unit.tests -P integration-tests -Dfindbugs.skip -Dcheckstyle.skip -pl !:dynamodbmapper-v1 -Dfailsafe.rerunFailingTestsCount=1 -Dmaven.wagon.httpconnectionManager.maxPerRoute=2
7
- - JAVA_VERSION=$(java -version 2>&1 | head -n 1 | cut -d\" -f 2 )
7
+ - JAVA_VERSION=$(java -version 2>&1 | grep -i version | cut -d'"' -f2 | cut -d'.' -f1-1 )
8
8
- echo $JAVA_VERSION
9
9
- |
10
- if [ "$JAVA_VERSION" \> "9" ]; then
10
+ if [ "$JAVA_VERSION" -ge "9" ]; then
11
11
cd test/module-path-tests
12
12
mvn package
13
13
mvn exec:exec -P integ-tests
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ phases:
4
4
build :
5
5
commands :
6
6
- mvn clean verify -Dskip.unit.tests -P integration-tests -Dfindbugs.skip -Dcheckstyle.skip -pl !:dynamodbmapper-v1 -Dfailsafe.rerunFailingTestsCount=1 -Dmaven.wagon.httpconnectionManager.maxPerRoute=2 --fail-at-end
7
- - JAVA_VERSION=$(java -version 2>&1 | head -n 1 | cut -d\" -f 2 )
7
+ - JAVA_VERSION=$(java -version 2>&1 | grep -i version | cut -d'"' -f2 | cut -d'.' -f1-1 )
8
8
- echo $JAVA_VERSION
9
9
- |
10
- if [ "$JAVA_VERSION" \> "9" ]; then
10
+ if [ "$JAVA_VERSION" -ge "9" ]; then
11
11
cd test/module-path-tests
12
12
mvn package
13
13
mvn exec:exec -P integ-tests
Original file line number Diff line number Diff line change 8
8
9
9
build :
10
10
commands :
11
+ - git checkout master
11
12
- CURRENT_SNAPSHOT=$(cat pom.xml | grep "<version>" | head -1 | cut -d\> -f 2 | cut -d\< -f 1)
12
13
- echo $CURRENT_SNAPSHOT
13
14
- VERSION=`echo "$CURRENT_SNAPSHOT" | cut -d "-" -f1`
@@ -23,4 +24,4 @@ phases:
23
24
- sed -i -E "s/(<version>).+(<\/version>)/\1$RELEASE_VERSION\2/" README.md
24
25
- git commit -am "Update to next snapshot version $NEXT_SNAPSHOT"
25
26
- git status
26
- -
git push https://[email protected] /aws/aws-sdk-java-v2.git master
27
+ -
git push https://[email protected] /aws/aws-sdk-java-v2.git master
Original file line number Diff line number Diff line change 20
20
<parent >
21
21
<artifactId >aws-sdk-java-pom</artifactId >
22
22
<groupId >software.amazon.awssdk</groupId >
23
- <version >2.0.0-preview-13 -SNAPSHOT</version >
23
+ <version >2.0.0-preview-14 -SNAPSHOT</version >
24
24
<relativePath >../../pom.xml</relativePath >
25
25
</parent >
26
26
<modelVersion >4.0.0</modelVersion >
You can’t perform that action at this time.
0 commit comments