Skip to content

Commit

Permalink
HOCS-6852: camel version jar upgraded to 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vinothon84 committed Jan 30, 2024
1 parent 8197fa3 commit ce5473d
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.1.5'
id 'io.spring.dependency-management' version '1.1.0'
id 'org.springframework.boot' version '3.1.2'
id 'io.spring.dependency-management' version '1.1.3'
}

def camelVersion = '2.25.4'
var s3MockVersion = '2.11.0'
def lombokVersion = '1.18.24'
def camelVersion = '4.3.0'
def lombokVersion = '1.18.30'

group = 'uk.gov.digital.ho.hocs'
sourceCompatibility = JavaVersion.VERSION_17
Expand Down Expand Up @@ -35,8 +34,8 @@ dependencies {
implementation "org.apache.camel:camel-aws:${camelVersion}"
implementation "org.apache.camel:camel-http4:${camelVersion}"
implementation 'org.apache.httpcomponents:httpmime:4.5.14'
implementation 'com.amazonaws:aws-java-sdk:1.12.472'
implementation 'org.glassfish:javax.json:1.0.4'
implementation 'com.amazonaws:aws-java-sdk:1.12.646'
implementation 'org.glassfish:javax.json:1.1.4'

implementation 'org.flywaydb:flyway-core:9.19.3'
runtimeOnly 'org.postgresql:postgresql:42.6.0'
Expand All @@ -45,14 +44,19 @@ dependencies {
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'

testImplementation 'com.github.tomakehurst:wiremock-standalone:2.27.2'
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.springframework.boot:spring-boot-starter-test'
testImplementation 'org.assertj:assertj-core'
testImplementation "com.adobe.testing:s3mock-junit4:${s3MockVersion}"
testImplementation "com.adobe.testing:s3mock:${s3MockVersion}"
}

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

jar {
enabled = false
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
Expand Down

0 comments on commit ce5473d

Please sign in to comment.