File tree Expand file tree Collapse file tree 4 files changed +17
-5
lines changed
spring-cloud-oci-common-samples-utils
spring-cloud-oci-notification-sample Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 11# This workflow will build a Java project with Maven
2+ # Integration tests for github are disabled temporarily
23
34name : Run the Integration Tests for Spring Cloud OCI
45
3637 -DlogId=${{ vars.logId }} \
3738 -Dit.storage=${{ vars.it_storage }} \
3839 -DbucketName=${{ vars.bucketName }} \
39- install
40+ install -DskipTests
Original file line number Diff line number Diff line change @@ -46,13 +46,16 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
4646 <build >
4747 <pluginManagement >
4848 <plugins >
49+ <!-- Settings for dependency check exclusion for sample modules -->
50+ <!--
4951 <plugin>
5052 <groupId>org.owasp</groupId>
5153 <artifactId>dependency-check-maven</artifactId>
5254 <configuration>
5355 <skip>true</skip>
5456 </configuration>
5557 </plugin>
58+ -->
5659 <plugin >
5760 <groupId >org.springframework.boot</groupId >
5861 <artifactId >spring-boot-maven-plugin</artifactId >
Original file line number Diff line number Diff line change @@ -24,10 +24,22 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
2424 <dependency >
2525 <groupId >org.springframework.boot</groupId >
2626 <artifactId >spring-boot-starter-web</artifactId >
27+ <exclusions >
28+ <exclusion >
29+ <groupId >org.yaml</groupId >
30+ <artifactId >snakeyaml</artifactId >
31+ </exclusion >
32+ </exclusions >
2733 </dependency >
2834 <dependency >
2935 <groupId >org.springdoc</groupId >
3036 <artifactId >springdoc-openapi-ui</artifactId >
37+ <exclusions >
38+ <exclusion >
39+ <groupId >org.yaml</groupId >
40+ <artifactId >snakeyaml</artifactId >
41+ </exclusion >
42+ </exclusions >
3143 </dependency >
3244 <dependency >
3345 <groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change @@ -40,10 +40,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
4040 <artifactId >spring-cloud-oci-common-samples-utils</artifactId >
4141 <type >test-jar</type >
4242 </dependency >
43- <dependency >
44- <groupId >org.springdoc</groupId >
45- <artifactId >springdoc-openapi-ui</artifactId >
46- </dependency >
4743 </dependencies >
4844
4945 <build >
You can’t perform that action at this time.
0 commit comments