Skip to content

fix(deps): bump io.github.robothy:local-s3-rest from 1.17 to 1.18 #786

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
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
18 changes: 8 additions & 10 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@ apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: sda-spring-boot-commons
title: SDA Spring Boot Commons
annotations:
sda.se/summary: |
The [sda-spring-boot-commons](https://github.com/SDA-SE/sda-spring-boot-commons) library
includes several modules to speed up SDA-compliant microservice development. It is
based on the [Spring Boot](https://spring.io/projects/spring-boot) framework. It provides
several starter modules for additional functionality. Those starter modules configure the
framework with default SDA specific settings and add support for an easy and fast integration
of standard technologies such as MongoDB, S3 or Kafka.
sda.se/federation-scopes: public
backstage.io/techdocs-ref: .
backstage.io/techdocs-ref: dir:.
description: |
SDA Spring Boot Commons is a set of libraries to bootstrap services easily that follow
the patterns and specifications promoted by the SDA SE.
The [sda-spring-boot-commons](https://github.com/SDA-SE/sda-spring-boot-commons) library
includes several modules to speed up SDA-compliant microservice development. It is
based on the [Spring Boot](https://spring.io/projects/spring-boot) framework. It provides
several starter modules for additional functionality. Those starter modules configure the
framework with default SDA specific settings and add support for an easy and fast integration
of standard technologies such as MongoDB, S3 or Kafka.
spec:
type: library
lifecycle: production
Expand Down
5 changes: 4 additions & 1 deletion sda-commons-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ dependencies {
api enforcedPlatform("io.netty:netty-bom:4.1.113.Final")

constraints {
// overall conflicts
api 'org.slf4j:slf4j-api:2.0.16'

// overall testing dependencies
api 'org.awaitility:awaitility:4.2.2'

Expand Down Expand Up @@ -82,7 +85,7 @@ dependencies {

// sda-commons-starter-s3
api "io.awspring.cloud:spring-cloud-aws-s3:3.2.0"
api "io.github.robothy:local-s3-rest:1.17"
api "io.github.robothy:local-s3-rest:1.18"

}
}
6 changes: 5 additions & 1 deletion sda-commons-starter-s3/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
dependencies {
implementation "org.springframework.boot:spring-boot-autoconfigure"
api 'org.springframework.boot:spring-boot-starter-actuator'
api "io.awspring.cloud:spring-cloud-aws-s3"
api "io.awspring.cloud:spring-cloud-aws-s3", {
// conflict with managed version in Spring Boot Dependencies
exclude group: "com.fasterxml.jackson.core", module: "jackson-databind"
}
api "com.fasterxml.jackson.core:jackson-databind"

testImplementation project(":sda-commons-starter-web")
testImplementation project(':sda-commons-web-testing')
Expand Down
Loading