Skip to content

Put back snakeyaml & Spring Cloud 2023.0.2 #42

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
Jun 14, 2024
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
8 changes: 1 addition & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or

<properties>
<spring-cloud-oci-dependencies.version>${project.version}</spring-cloud-oci-dependencies.version>
<spring-cloud-dependencies.version>2023.0.1</spring-cloud-dependencies.version>
<spring-cloud-dependencies.version>2023.0.2</spring-cloud-dependencies.version>
<spring-boot-dependencies.version>3.2.6</spring-boot-dependencies.version>
<oci-sdk.version>3.43.0</oci-sdk.version>
<spring-boot-maven-plugin.version>3.2.5</spring-boot-maven-plugin.version>
Expand Down Expand Up @@ -151,12 +151,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down
8 changes: 1 addition & 7 deletions spring-cloud-oci-core/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2023, Oracle and/or its affiliates.
Copyright (c) 2023, 2024, Oracle and/or its affiliates.
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
-->

Expand Down Expand Up @@ -48,12 +48,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,10 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
<version>2.5.0</version>
</dependency>
<dependency>
Expand Down
Loading