Skip to content

Commit

Permalink
fix(deps): update dependencies (#53)
Browse files Browse the repository at this point in the history
Co-authored-by: juancgalvis <[email protected]>
  • Loading branch information
1 parent 82061c5 commit 5889f29
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ buildscript {
}

plugins {
id 'org.sonarqube' version '4.4.1.3373'
id 'com.github.ben-manes.versions' version '0.47.0'
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0'
id 'org.springframework.boot' version '3.2.4' apply false
id 'org.owasp.dependencycheck' version '9.0.9' apply false
id 'org.sonarqube' version '5.0.0.4638'
id 'com.github.ben-manes.versions' version '0.51.0'
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
id 'org.springframework.boot' version '3.2.5' apply false
id 'org.owasp.dependencycheck' version '9.1.0' apply false
id 'co.com.bancolombia.cleanArchitecture' version '3.17.1'
}

apply from: './main.gradle'
apply from: './main.gradle'
2 changes: 1 addition & 1 deletion commons-jms-api/commons-jms-api.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ dependencies {
ext {
artifactId = 'commons-jms-api'
artifactDescription = 'Commons JMS API'
}
}
4 changes: 2 additions & 2 deletions commons-jms-mq/commons-jms-mq.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ dependencies {

configurations.configureEach {
resolutionStrategy {
force 'org.json:json:20240205' // to avoid CVE-2023-5072
force 'org.json:json:20240303' // to avoid CVE-2023-5072
}
}

ext {
artifactId = 'commons-jms-mq'
artifactDescription = 'Commons JMS MQ'
}
}
6 changes: 3 additions & 3 deletions commons-jms-utils/commons-jms-utils.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
dependencies {
api project(':commons-jms-api')
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation "io.github.resilience4j:resilience4j-retry:2.2.0"
implementation "org.apache.logging.log4j:log4j-api:2.23.1"
implementation 'io.github.resilience4j:resilience4j-retry:2.2.0'
implementation 'org.apache.logging.log4j:log4j-api:2.23.1'
}

ext {
artifactId = 'commons-jms-utils'
artifactDescription = 'Commons JMS Utils'
}
}
2 changes: 1 addition & 1 deletion examples/mq-mvc-app/mq-mvc-app.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation project(':commons-jms-mq')
}
}
2 changes: 1 addition & 1 deletion examples/mq-reactive-remote/mq-reactive-remote.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ dependencies {
implementation project(':commons-jms-mq')
implementation project(':commons-jms-http-replier')
implementation project(':adapter-redis')
}
}
2 changes: 1 addition & 1 deletion examples/mq-reactive-replier/mq-reactive-replier.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'org.springframework.boot:spring-boot-starter'
implementation project(':commons-jms-mq')
}
}
2 changes: 1 addition & 1 deletion examples/mq-reactive-selector/mq-reactive-selector.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation project(':commons-jms-mq')
}
}
2 changes: 1 addition & 1 deletion examples/mq-reactive/mq-reactive.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation project(':commons-jms-mq')
}
}
4 changes: 2 additions & 2 deletions main.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ subprojects {
testAnnotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok'
testImplementation 'io.projectreactor:reactor-test'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation platform('org.junit:junit-bom:5.11.0-M1')
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'org.mockito:mockito-junit-jupiter:5.10.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.11.0'
}

test {
Expand Down

0 comments on commit 5889f29

Please sign in to comment.