Skip to content

Commit 8b38ce1

Browse files
Bump the minor-patch group across 1 directory with 6 updates (#24)
* Bump the minor-patch group across 1 directory with 6 updates Bumps the minor-patch group with 6 updates in the /ams-spring-boot-shopping directory: | Package | From | To | | --- | --- | --- | | [com.sap.cloud.security:java-bom](https://github.com/SAP/cloud-security-xsuaa-integration) | `3.5.7` | `3.6.8` | | [com.sap.cloud.sdk:sdk-bom](https://github.com/SAP/cloud-sdk-java) | `5.24.0` | `5.27.0` | | [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.15.2` | `2.21.1` | | com.opencsv:opencsv | `5.8` | `5.12.0` | | [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) | `3.14.0` | `3.15.0` | | [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) | `3.1.2` | `3.5.5` | Updates `com.sap.cloud.security:java-bom` from 3.5.7 to 3.6.8 - [Release notes](https://github.com/SAP/cloud-security-xsuaa-integration/releases) - [Changelog](https://github.com/SAP/cloud-security-services-integration-library/blob/main/CHANGELOG.md) - [Commits](SAP/cloud-security-services-integration-library@3.5.7...3.6.8) Updates `com.sap.cloud.sdk:sdk-bom` from 5.24.0 to 5.27.0 - [Release notes](https://github.com/SAP/cloud-sdk-java/releases) - [Changelog](https://github.com/SAP/cloud-sdk-java/blob/main/release_notes.md) - [Commits](SAP/cloud-sdk-java@rel/5.24.0...rel/5.27.0) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.15.2 to 2.21.1 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.opencsv:opencsv` from 5.8 to 5.12.0 Updates `org.apache.maven.plugins:maven-compiler-plugin` from 3.14.0 to 3.15.0 - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](apache/maven-compiler-plugin@maven-compiler-plugin-3.14.0...maven-compiler-plugin-3.15.0) Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.1.2 to 3.5.5 - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](apache/maven-surefire@surefire-3.1.2...surefire-3.5.5) --- updated-dependencies: - dependency-name: com.sap.cloud.security:java-bom dependency-version: 3.6.8 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-patch - dependency-name: com.sap.cloud.sdk:sdk-bom dependency-version: 5.27.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-patch - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.21.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-patch - dependency-name: com.opencsv:opencsv dependency-version: 5.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-patch - dependency-name: org.apache.maven.plugins:maven-compiler-plugin dependency-version: 3.15.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-patch - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-version: 3.5.5 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-patch ... Signed-off-by: dependabot[bot] <support@github.com> * do not manage jackson, junit, apache http client (managed by Spring Boot) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Manuel Fink <manuel.fink@sap.com>
1 parent a3f32de commit 8b38ce1

File tree

1 file changed

+5
-47
lines changed

1 file changed

+5
-47
lines changed

ams-spring-boot-shopping/pom.xml

Lines changed: 5 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,10 @@
2626
<spring.boot.version>3.5.10</spring.boot.version>
2727
<sap.cloud.security.ams.version>4.0.7</sap.cloud.security.ams.version>
2828
<sap.cloud.security.ams.dcl-compiler.version>1.1.1</sap.cloud.security.ams.dcl-compiler.version>
29-
<sap.cloud.security.version>3.5.7</sap.cloud.security.version>
30-
<sap.cloud.sdk.version>5.24.0</sap.cloud.sdk.version>
29+
<sap.cloud.security.version>3.6.8</sap.cloud.security.version>
30+
<sap.cloud.sdk.version>5.27.0</sap.cloud.sdk.version>
3131
<sap.cloud.environment.servicebinding.version>0.21.0</sap.cloud.environment.servicebinding.version>
32-
<jackson.version>2.15.2</jackson.version>
33-
<opencsv.version>5.8</opencsv.version>
34-
<apache.httpclient.version>4.5.14</apache.httpclient.version>
35-
<junit.version>6.0.3</junit.version>
32+
<opencsv.version>5.12.0</opencsv.version>
3633
</properties>
3734

3835
<dependencyManagement>
@@ -74,33 +71,12 @@
7471
<scope>import</scope>
7572
</dependency>
7673

77-
<!-- JSON -->
78-
<dependency>
79-
<groupId>com.fasterxml.jackson.core</groupId>
80-
<artifactId>jackson-databind</artifactId>
81-
<version>${jackson.version}</version>
82-
</dependency>
83-
8474
<!-- CSV -->
8575
<dependency>
8676
<groupId>com.opencsv</groupId>
8777
<artifactId>opencsv</artifactId>
8878
<version>${opencsv.version}</version>
8979
</dependency>
90-
91-
<!-- HTTP -->
92-
<dependency>
93-
<groupId>org.apache.httpcomponents</groupId>
94-
<artifactId>httpclient</artifactId>
95-
<version>${apache.httpclient.version}</version>
96-
</dependency>
97-
98-
<!-- Testing -->
99-
<dependency>
100-
<groupId>org.junit.jupiter</groupId>
101-
<artifactId>junit-jupiter</artifactId>
102-
<version>${junit.version}</version>
103-
</dependency>
10480
</dependencies>
10581
</dependencyManagement>
10682

@@ -153,24 +129,12 @@
153129
<artifactId>java-sap-service-operator</artifactId>
154130
</dependency>
155131

156-
<!-- JSON Processing -->
157-
<dependency>
158-
<groupId>com.fasterxml.jackson.core</groupId>
159-
<artifactId>jackson-databind</artifactId>
160-
</dependency>
161-
162132
<!-- CSV Processing -->
163133
<dependency>
164134
<groupId>com.opencsv</groupId>
165135
<artifactId>opencsv</artifactId>
166136
</dependency>
167137

168-
<!-- Apache HTTP Client 4 required for Authentication Library -->
169-
<dependency>
170-
<groupId>org.apache.httpcomponents</groupId>
171-
<artifactId>httpclient</artifactId>
172-
</dependency>
173-
174138
<!-- Test Dependencies -->
175139
<dependency>
176140
<groupId>org.springframework.boot</groupId>
@@ -195,12 +159,6 @@
195159
<artifactId>spring-boot-starter-ams-test</artifactId>
196160
<scope>test</scope>
197161
</dependency>
198-
199-
<dependency>
200-
<groupId>org.junit.jupiter</groupId>
201-
<artifactId>junit-jupiter</artifactId>
202-
<scope>test</scope>
203-
</dependency>
204162
<dependency>
205163
<groupId>org.springframework.boot</groupId>
206164
<artifactId>spring-boot-test-autoconfigure</artifactId>
@@ -214,7 +172,7 @@
214172
<plugin>
215173
<groupId>org.apache.maven.plugins</groupId>
216174
<artifactId>maven-compiler-plugin</artifactId>
217-
<version>3.14.0</version>
175+
<version>3.15.0</version>
218176
<configuration>
219177
<release>${jdk.version}</release>
220178
</configuration>
@@ -228,7 +186,7 @@
228186
<plugin>
229187
<groupId>org.apache.maven.plugins</groupId>
230188
<artifactId>maven-surefire-plugin</artifactId>
231-
<version>3.1.2</version>
189+
<version>3.5.5</version>
232190
<configuration>
233191
<classpathDependencyExcludes>
234192
<classpathDependencyExclude>

0 commit comments

Comments
 (0)