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 1
1
# This workflow will build a Java project with Maven
2
+ # Integration tests for github are disabled temporarily
2
3
3
4
name : Run the Integration Tests for Spring Cloud OCI
4
5
36
37
-DlogId=${{ vars.logId }} \
37
38
-Dit.storage=${{ vars.it_storage }} \
38
39
-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
46
46
<build >
47
47
<pluginManagement >
48
48
<plugins >
49
+ <!-- Settings for dependency check exclusion for sample modules -->
50
+ <!--
49
51
<plugin>
50
52
<groupId>org.owasp</groupId>
51
53
<artifactId>dependency-check-maven</artifactId>
52
54
<configuration>
53
55
<skip>true</skip>
54
56
</configuration>
55
57
</plugin>
58
+ -->
56
59
<plugin >
57
60
<groupId >org.springframework.boot</groupId >
58
61
<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
24
24
<dependency >
25
25
<groupId >org.springframework.boot</groupId >
26
26
<artifactId >spring-boot-starter-web</artifactId >
27
+ <exclusions >
28
+ <exclusion >
29
+ <groupId >org.yaml</groupId >
30
+ <artifactId >snakeyaml</artifactId >
31
+ </exclusion >
32
+ </exclusions >
27
33
</dependency >
28
34
<dependency >
29
35
<groupId >org.springdoc</groupId >
30
36
<artifactId >springdoc-openapi-ui</artifactId >
37
+ <exclusions >
38
+ <exclusion >
39
+ <groupId >org.yaml</groupId >
40
+ <artifactId >snakeyaml</artifactId >
41
+ </exclusion >
42
+ </exclusions >
31
43
</dependency >
32
44
<dependency >
33
45
<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
40
40
<artifactId >spring-cloud-oci-common-samples-utils</artifactId >
41
41
<type >test-jar</type >
42
42
</dependency >
43
- <dependency >
44
- <groupId >org.springdoc</groupId >
45
- <artifactId >springdoc-openapi-ui</artifactId >
46
- </dependency >
47
43
</dependencies >
48
44
49
45
<build >
You can’t perform that action at this time.
0 commit comments