Skip to content

Commit

Permalink
Update jar with springboot3
Browse files Browse the repository at this point in the history
  • Loading branch information
vinothon84 committed Jan 30, 2024
1 parent ce5473d commit c758ade
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ dependencies {
exclude group: "commons-logging", module: "commons-logging"
}

implementation "org.apache.camel:camel-spring-boot:${camelVersion}"
implementation "org.apache.camel.springboot:camel-spring-boot-starter:${camelVersion}"
implementation "org.apache.camel:camel-jackson:${camelVersion}"
implementation "org.apache.camel:camel-aws:${camelVersion}"
implementation "org.apache.camel:camel-http4:${camelVersion}"
implementation "org.apache.camel:camel-aws:2.25.4"
implementation "org.apache.camel:camel-http4:2.25.4"
implementation 'org.apache.httpcomponents:httpmime:4.5.14'
implementation 'com.amazonaws:aws-java-sdk:1.12.646'
implementation 'org.glassfish:javax.json:1.1.4'
Expand All @@ -46,18 +46,16 @@ dependencies {

testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'com.github.tomakehurst:wiremock-standalone:3.0.1'
testImplementation "org.apache.camel:camel-test-spring:${camelVersion}"
testImplementation "org.apache.camel:camel-test-spring:3.22.0"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.assertj:assertj-core'
}

//dependencyManagement {
// imports {
// mavenBom "org.apache.camel.springboot:camel-spring-boot-bom:${camelVersion}"
// }
//}

jar {
enabled = false
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
}

tasks.named('bootJar') {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}

0 comments on commit c758ade

Please sign in to comment.