Skip to content

Commit

Permalink
fix: duplicated dependencyManagement tag issue (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
EggOxygen authored Jul 11, 2023
1 parent 973b35b commit 8b2cbfe
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion oss-s3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ plugins {
id("conventions.publishing")
}

dependencyManagement {
imports {
mavenBom(libs.aws.sdk.bom.get().toString())
}
}

dependencies {
implementation(libs.slf4k)

api(project(":oss-common"))
implementation(platform(libs.aws.sdk.bom))
implementation("software.amazon.awssdk:s3")

api("org.springframework.boot:spring-boot-starter")
Expand Down

0 comments on commit 8b2cbfe

Please sign in to comment.