Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions buildspecs/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ phases:
- echo $JAVA_VERSION
- echo $MAVEN_OPTIONS
- |
set -e
if [ "$JAVA_VERSION" -ge "9" ]; then
cd test/module-path-tests
mvn package
Expand Down
1 change: 1 addition & 0 deletions buildspecs/on-demand-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ phases:
- JAVA_VERSION=$(java -version 2>&1 | grep -i version | cut -d'"' -f2 | cut -d'.' -f1-1)
- echo $JAVA_VERSION
- |
set -e
if [ "$JAVA_VERSION" -ge "9" ]; then
cd test/module-path-tests
mvn package
Expand Down
1 change: 1 addition & 0 deletions buildspecs/release-to-maven-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ phases:
- RELEASE_VERSION=`mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec`
- ARTIFACT_URL="https://repo1.maven.org/maven2/software/amazon/awssdk/aws-sdk-java/$RELEASE_VERSION/"
- |
set -e
if ! curl -f --head $ARTIFACT_URL; then
SONATYPE_USERNAME=`aws secretsmanager get-secret-value --secret-id $SONATYPE_USERNAME_ARN --query SecretString --output text`
SONATYPE_PASSWORD=`aws secretsmanager get-secret-value --secret-id $SONATYPE_PASSWORD_ARN --query SecretString --output text`
Expand Down
1 change: 1 addition & 0 deletions buildspecs/release-to-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ phases:
- RELEASE_VERSION=`mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec`
- SONATYPE_URL="https://aws.oss.sonatype.org/service/local/repositories/releases/content/software/amazon/awssdk/aws-sdk-java/$RELEASE_VERSION/"
- |
set -e
if ! curl -f --head $SONATYPE_URL; then
SONATYPE_USERNAME=`aws secretsmanager get-secret-value --secret-id $SONATYPE_USERNAME_ARN --query SecretString --output text`
SONATYPE_PASSWORD=`aws secretsmanager get-secret-value --secret-id $SONATYPE_PASSWORD_ARN --query SecretString --output text`
Expand Down
Loading