Skip to content

Commit aee3b37

Browse files
committed
Logging clashes fix, sample app update and MN comments
1 parent b33640f commit aee3b37

File tree

5 files changed

+9
-50
lines changed

5 files changed

+9
-50
lines changed

.github/workflows/integrationTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Setup Java 21
17+
- name: Setup Java 17
1818
uses: actions/setup-java@v1
1919
with:
20-
java-version: 21
20+
java-version: 17
2121
distribution: 'temurin'
2222
java-package: 'jdk'
2323
cache: 'maven'

.gitignore

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
**/*.rpm
66
**/*.jar
77
**/*.bin
8-
*.patch
9-
env.sh
10-
labs/.DS_Store
11-
12-
.idea/**
138

149
### STS ###
1510
.apt_generated
@@ -38,19 +33,10 @@ build/
3833
!**/src/test/**/build/
3934

4035
### VS Code ###
41-
.vscode/
36+
.vscode/**
4237
/.jpb/**
4338

44-
*.iml
45-
*.ipr
46-
*.iws
4739
*.log
48-
.DS_Store
49-
.idea
5040
.run
5141
target/
5242
Thumbs.db
53-
ocibuild.conf
54-
sca-config.json
55-
input_ocibuild*
56-
output_ocibuild*

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ For a deep dive into the project, refer to the Spring Cloud OCI documentation:
1515
| Version | Reference Docs | API Docs |
1616
|------------------------|---------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
1717
| Spring Cloud OCI 1.0.0 | [Reference Docs](https://oracle.github.io/spring-cloud-oci/1.0.0/reference/html/index.html) | [API Docs](https://oracle.github.io/spring-cloud-oci/1.0.0/javadocs/index.html) |
18+
| Spring Cloud OCI 1.0.1 | [Reference Docs](https://oracle.github.io/spring-cloud-oci/1.0.0/reference/html/index.html) | [API Docs](https://oracle.github.io/spring-cloud-oci/1.0.0/javadocs/index.html)
1819

1920
## Compatibility with Spring Project Versions
2021

2122
This project has dependency and transitive dependencies on Spring Projects. The table below outlines the versions of Spring Cloud, Spring Boot and Spring Framework versions that are compatible with certain Spring Cloud OCI version.
2223

23-
| Spring Cloud OCI | Spring Cloud | Spring Boot | OCI Java SDK |
24-
|------------------|--------------------|---------------------|--------------|
25-
| 1.0.0 | 2022.0.x, 2023.0.x | 3.2.x, 3.1.x, 3.0.x | 3.41.1 |
24+
| Spring Cloud OCI | Spring Cloud | Spring Boot | OCI Java SDK |
25+
|------------------|--------------|--------------|--------------|
26+
| 1.0.0 | 2022.0.x | 3.1.x, 3.0.x | 3.24.0 |
27+
| 1.0.1 | 2023.0.x | 3.2.x | 3.41.1 |
2628

2729
## Try out samples
2830

pom.xml

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
7676
<commons-lang3.version>3.14.0</commons-lang3.version>
7777
<lombok.version>1.18.32</lombok.version>
7878
<jakarta.servlet-api.version>6.0.0</jakarta.servlet-api.version>
79-
<slf4j-simple.version>2.0.13</slf4j-simple.version>
8079
<flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
8180
<checksum-maven-plugin.version>1.11</checksum-maven-plugin.version>
8281
<jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
@@ -148,11 +147,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
148147
</dependencyManagement>
149148

150149
<dependencies>
151-
<dependency>
152-
<groupId>org.slf4j</groupId>
153-
<artifactId>slf4j-simple</artifactId>
154-
<version>${slf4j-simple.version}</version>
155-
</dependency>
156150
<dependency>
157151
<groupId>org.springframework.boot</groupId>
158152
<artifactId>spring-boot-starter-test</artifactId>
@@ -183,29 +177,6 @@ Licensed under the Universal Permissive License v 1.0 as shown at https://oss.or
183177
</pluginManagement>
184178

185179
<plugins>
186-
<!-- OpenRewrite Plugin
187-
Due to a bug, the build has to be executed like this:
188-
mvn -U org.openrewrite.maven:rewrite-maven-plugin:dryRun \
189-
-Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-spring:RELEASE \
190-
-Drewrite.activeRecipes=org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2
191-
-->
192-
<plugin>
193-
<groupId>org.openrewrite.maven</groupId>
194-
<artifactId>rewrite-maven-plugin</artifactId>
195-
<version>5.30.0</version>
196-
<configuration>
197-
<activeRecipes>
198-
<recipe>org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2</recipe>
199-
</activeRecipes>
200-
</configuration>
201-
<dependencies>
202-
<dependency>
203-
<groupId>org.openrewrite.recipe</groupId>
204-
<artifactId>rewrite-spring</artifactId>
205-
<version>5.9.0</version>
206-
</dependency>
207-
</dependencies>
208-
</plugin>
209180
<plugin>
210181
<groupId>org.apache.maven.plugins</groupId>
211182
<artifactId>maven-javadoc-plugin</artifactId>

spring-cloud-oci-samples/spring-cloud-oci-function-sample/src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
33

44
spring.cloud.oci.region.static = us-ashburn-1
5-
spring.cloud.oci.config.type = SESSION_TOKEN
5+
#spring.cloud.oci.config.type = SESSION_TOKEN

0 commit comments

Comments
 (0)