Skip to content

Commit ca4d0e1

Browse files
Use transitive dependencies from spring boot and spring cloud, Update the Spring Cloud and Spring Boot versions to 2022.0.4 and 3.1.2
1 parent 68f97e1 commit ca4d0e1

File tree

6 files changed

+5
-39
lines changed

6 files changed

+5
-39
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This project has dependency and transitive dependencies on Spring Projects. The
2828

2929
| Spring Cloud OCI | Spring Cloud | Spring Boot | OCI Java SDK |
3030
|-------------------|---------------------------|---------------------|--------------|
31-
| 1.0.0 | 2021.0.x | 2.7.x | 3.19.0 |
31+
| 1.0.0 | 2022.0.x | 3.1.x, 3.0.x | 3.19.0 |
3232

3333

3434
## Try out samples

pom.xml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
5959

6060
<properties>
6161
<spring-cloud-oci-dependencies.version>${project.version}</spring-cloud-oci-dependencies.version>
62-
<spring-cloud-dependencies.version>2021.0.2</spring-cloud-dependencies.version>
63-
<spring-boot-dependencies.version>2.7.4</spring-boot-dependencies.version>
62+
<spring-cloud-dependencies.version>2022.0.4</spring-cloud-dependencies.version>
63+
<spring-boot-dependencies.version>3.1.2</spring-boot-dependencies.version>
6464
<oci-sdk.version>3.19.0</oci-sdk.version>
6565
<spring-boot-maven-plugin.version>3.1.2</spring-boot-maven-plugin.version>
6666
<maven.compiler.source>17</maven.compiler.source>
@@ -71,7 +71,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
7171
<maven-surefire-plugin.version>3.1.2</maven-surefire-plugin.version>
7272
<springdoc-openapi-ui.version>1.6.13</springdoc-openapi-ui.version>
7373
<commons-lang3.version>3.12.0</commons-lang3.version>
74-
<jackson-core.version>2.13.1</jackson-core.version>
7574
<lombok.version>1.18.20</lombok.version>
7675
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
7776
<slf4j-simple.version>1.7.33</slf4j-simple.version>
@@ -103,11 +102,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
103102
<artifactId>commons-lang3</artifactId>
104103
<version>${commons-lang3.version}</version>
105104
</dependency>
106-
<dependency>
107-
<groupId>com.fasterxml.jackson.core</groupId>
108-
<artifactId>jackson-core</artifactId>
109-
<version>${jackson-core.version}</version>
110-
</dependency>
111105
<dependency>
112106
<groupId>org.projectlombok</groupId>
113107
<artifactId>lombok</artifactId>

spring-cloud-oci-core/pom.xml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,8 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
4646
</properties>
4747
<dependencies>
4848
<dependency>
49-
<groupId>org.springframework</groupId>
50-
<artifactId>spring-core</artifactId>
51-
</dependency>
52-
<dependency>
53-
<groupId>org.springframework</groupId>
54-
<artifactId>spring-context</artifactId>
49+
<groupId>org.springframework.boot</groupId>
50+
<artifactId>spring-boot-starter</artifactId>
5551
</dependency>
5652
<dependency>
5753
<groupId>com.oracle.oci.sdk</groupId>

spring-cloud-oci-logging/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
4545
<maven.compiler.target>17</maven.compiler.target>
4646
</properties>
4747
<dependencies>
48-
<dependency>
49-
<groupId>org.springframework</groupId>
50-
<artifactId>spring-core</artifactId>
51-
</dependency>
52-
<dependency>
53-
<groupId>org.springframework</groupId>
54-
<artifactId>spring-context</artifactId>
55-
</dependency>
5648
<dependency>
5749
<groupId>com.oracle.cloud.spring</groupId>
5850
<artifactId>spring-cloud-oci-core</artifactId>

spring-cloud-oci-notification/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
4545
<maven.compiler.target>17</maven.compiler.target>
4646
</properties>
4747
<dependencies>
48-
<dependency>
49-
<groupId>org.springframework</groupId>
50-
<artifactId>spring-core</artifactId>
51-
</dependency>
52-
<dependency>
53-
<groupId>org.springframework</groupId>
54-
<artifactId>spring-context</artifactId>
55-
</dependency>
5648
<dependency>
5749
<groupId>com.oracle.cloud.spring</groupId>
5850
<artifactId>spring-cloud-oci-core</artifactId>

spring-cloud-oci-storage/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
4747
</properties>
4848

4949
<dependencies>
50-
<dependency>
51-
<groupId>org.springframework</groupId>
52-
<artifactId>spring-core</artifactId>
53-
</dependency>
54-
<dependency>
55-
<groupId>org.springframework</groupId>
56-
<artifactId>spring-context</artifactId>
57-
</dependency>
5850
<dependency>
5951
<groupId>com.oracle.cloud.spring</groupId>
6052
<artifactId>spring-cloud-oci-core</artifactId>

0 commit comments

Comments
 (0)