Skip to content

Renamed module and folder name of auth-sts-testing to auth-tests #3032

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 16, 2022
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
2 changes: 1 addition & 1 deletion .brazil.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"archetype-lambda": { "skipImport": true },
"archetype-tools": { "skipImport": true },
"archetypes": { "skipImport": true },
"auth-sts-testing": { "skipImport": true },
"auth-tests": { "skipImport": true },
"aws-sdk-java": { "skipImport": true },
"aws-sdk-java-pom": { "skipImport": true },
"bom": { "skipImport": true },
Expand Down
2 changes: 1 addition & 1 deletion buildspecs/release-to-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ phases:
awk 'BEGIN { var=ENVIRON["SDK_SIGNING_GPG_KEYNAME"] } { gsub("\\$SDK_SIGNING_GPG_KEYNAME", var, $0); print }' > \
$SETTINGS_XML

mvn clean deploy -B -s $SETTINGS_XML -Ppublishing -DperformRelease -Dspotbugs.skip -DskipTests -Dcheckstyle.skip -Djapicmp.skip -Ddoclint=none -pl !:protocol-tests,!:protocol-tests-core,!:codegen-generated-classes-test,!:sdk-benchmarks,!:module-path-tests,!:tests-coverage-reporting,!:stability-tests,!:sdk-native-image-test,!:auth-sts-testing,!:s3-benchmarks,!:region-testing -DautoReleaseAfterClose=true -DstagingProgressTimeoutMinutes=30
mvn clean deploy -B -s $SETTINGS_XML -Ppublishing -DperformRelease -Dspotbugs.skip -DskipTests -Dcheckstyle.skip -Djapicmp.skip -Ddoclint=none -pl !:protocol-tests,!:protocol-tests-core,!:codegen-generated-classes-test,!:sdk-benchmarks,!:module-path-tests,!:tests-coverage-reporting,!:stability-tests,!:sdk-native-image-test,!:auth-tests,!:s3-benchmarks,!:region-testing -DautoReleaseAfterClose=true -DstagingProgressTimeoutMinutes=30
else
echo "This version was already released."
fi
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<module>test/stability-tests</module>
<module>test/sdk-native-image-test</module>
<module>test/s3-benchmarks</module>
<module>test/auth-sts-testing</module>
<module>test/auth-tests</module>
<module>test/region-testing</module>
</modules>
<scm>
Expand Down
6 changes: 3 additions & 3 deletions test/auth-sts-testing/pom.xml → test/auth-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>auth-sts-testing</artifactId>
<name>AWS Java SDK :: Test :: Auth Sts Testing</name>
<description>Test package for testing sts and the auth package together.</description>
<artifactId>auth-tests</artifactId>
<name>AWS Java SDK :: Test :: Auth Testing</name>
<description>Test package for testing authorization related packages.</description>
<dependencyManagement>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package software.amazon.awssdk.authststesting;
package software.amazon.awssdk.auth.sts;

import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;
Expand Down