We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdd25be commit 81852f1Copy full SHA for 81852f1
java-test-samples/apigw-lambda-list-s3-buckets/pom.xml
@@ -173,6 +173,16 @@
173
<plugin>
174
<artifactId>maven-surefire-plugin</artifactId>
175
<version>2.22.2</version>
176
+ <configuration>
177
+ <!-- These tests are excluded from sure fire plugin to avoid failures due to external dependencies.
178
+ You can run these tests individually if you have the relevant pre-requisites in place.
179
+ Please see README for more information on each test class file.
180
+ -->
181
+ <excludes>
182
+ <exclude>AppTest.java</exclude>
183
+ <exclude>AppIntegrationTest.java</exclude>
184
+ </excludes>
185
+ </configuration>
186
</plugin>
187
</plugins>
188
</build>
0 commit comments