File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -129,23 +129,23 @@ jobs:
129
129
fi
130
130
131
131
# 2. Check if added to tests-coverage-reporting pom.xml
132
- if ! grep -q "<module >.*$MODULE_NAME</module >" test/tests-coverage-reporting/pom.xml 2>/dev/null; then
132
+ if ! grep -q "<dependency >.*$MODULE_NAME</dependency >" test/tests-coverage-reporting/pom.xml 2>/dev/null; then
133
133
echo "::error::Module $MODULE_NAME is not added to tests-coverage-reporting pom.xml"
134
134
HAS_ERRORS=1
135
135
else
136
136
echo "✅ Module is added to tests-coverage-reporting"
137
137
fi
138
138
139
139
# 3. Check if added to aws-sdk-java pom.xml
140
- if ! grep -q "<module >.*$MODULE_NAME</module >" aws-sdk-java/pom.xml 2>/dev/null; then
140
+ if ! grep -q "<dependency >.*$MODULE_NAME</dependency >" aws-sdk-java/pom.xml 2>/dev/null; then
141
141
echo "::error::Module $MODULE_NAME is not added to aws-sdk-java pom.xml"
142
142
HAS_ERRORS=1
143
143
else
144
144
echo "✅ Module is added to aws-sdk-java pom.xml"
145
145
fi
146
146
147
147
# 4. Check if added to architecture-tests pom.xml
148
- if ! grep -q "<module >.*$MODULE_NAME</module >" test/architecture-tests/pom.xml 2>/dev/null; then
148
+ if ! grep -q "<dependency >.*$MODULE_NAME</dependency >" test/architecture-tests/pom.xml 2>/dev/null; then
149
149
echo "::error::Module $MODULE_NAME is not added to architecture-tests pom.xml"
150
150
HAS_ERRORS=1
151
151
else
Original file line number Diff line number Diff line change 684
684
<exclude >*.internal.*</exclude >
685
685
<exclude >software.amazon.awssdk.thirdparty.*</exclude >
686
686
<exclude >software.amazon.awssdk.regions.*</exclude >
687
- <!-- TODO revert - Temporarily disable because system setting USER_REGION was removed -->
688
- <exclude >software.amazon.awssdk.utils.JavaSystemSetting</exclude >
689
- <!-- TODO remove once S3ObjectSize is change is merged -->
690
- <exclude >software.amazon.awssdk.services.s3.model.CompleteMultipartUploadRequest</exclude >
691
687
</excludes >
692
688
693
689
<ignoreMissingOldVersion >true</ignoreMissingOldVersion >
You can’t perform that action at this time.
0 commit comments