Skip to content
Closed
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
4 changes: 2 additions & 2 deletions async/async-commons/async-commons.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ dependencies {

compileOnly 'io.projectreactor:reactor-core'
api 'tools.jackson.core:jackson-databind'
implementation 'commons-io:commons-io:2.21.0'
implementation 'io.cloudevents:cloudevents-core:4.0.1'
implementation 'commons-io:commons-io:2.22.0'
implementation 'io.cloudevents:cloudevents-core:4.0.2'

testImplementation 'io.projectreactor:reactor-test'
}
2 changes: 1 addition & 1 deletion async/async-kafka/async-kafka.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ dependencies {
api project(':async-commons')
api project(':cloudevents-json-jackson')
api 'io.projectreactor.kafka:reactor-kafka:1.3.25'
implementation 'io.cloudevents:cloudevents-core:4.0.1'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
}
2 changes: 1 addition & 1 deletion async/async-rabbit/async-rabbit.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ dependencies {
api 'com.rabbitmq:amqp-client'
api 'tools.jackson.core:jackson-databind'

implementation 'io.cloudevents:cloudevents-core:4.0.1'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
testImplementation 'io.projectreactor:reactor-test'
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ ext {

dependencies {
api 'tools.jackson.core:jackson-databind'
implementation 'io.cloudevents:cloudevents-api:4.0.1'
implementation 'io.cloudevents:cloudevents-core:4.0.1'
implementation 'io.cloudevents:cloudevents-api:4.0.2'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
}
2 changes: 1 addition & 1 deletion async/reactor-rabbitmq/reactor-rabbitmq.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ ext {
dependencies {
api 'io.projectreactor:reactor-core'
api 'com.rabbitmq:amqp-client'
}
}
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ buildscript {

plugins {
id 'jacoco'
id 'org.sonarqube' version '7.2.2.6593'
id 'org.springframework.boot' version '4.0.4' apply false
id 'org.sonarqube' version '7.3.0.8198'
id 'org.springframework.boot' version '4.1.0-RC1' apply false
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
id 'co.com.bancolombia.cleanArchitecture' version '4.3.0'
id 'co.com.bancolombia.cleanArchitecture' version '4.4.1'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion domain/domain-events/domain-events-api.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ ext {

dependencies {
api 'org.reactivestreams:reactive-streams:1.0.4'
api 'io.cloudevents:cloudevents-api:4.0.1'
api 'io.cloudevents:cloudevents-api:4.0.2'
}
4 changes: 2 additions & 2 deletions main.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ subprojects {

dependencyManagement {
imports {
mavenBom 'org.springframework.boot:spring-boot-dependencies:4.0.4'
mavenBom 'org.springframework.boot:spring-boot-dependencies:4.0.6'
}
}

Expand Down Expand Up @@ -187,6 +187,6 @@ tasks.register('generateMergedReport', JacocoReport) {
}

tasks.named('wrapper') {
gradleVersion = '9.4.1'
gradleVersion = '9.5.0'
validateDistributionUrl = true
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation project(':shared')
implementation project(':async-kafka-starter')
implementation project(':cloudevents-json-jackson')
implementation 'io.cloudevents:cloudevents-core:4.0.1'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ dependencies {
implementation project(":shared")
implementation project(":async-commons-rabbit-starter")
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'io.cloudevents:cloudevents-core:4.0.1'
implementation 'io.cloudevents:cloudevents-core:4.0.2'
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'io.cloudevents:cloudevents-core:4.0.1'
implementation 'io.cloudevents:cloudevents-core:4.0.2'

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'io.cloudevents:cloudevents-core:4.0.1'
implementation 'io.cloudevents:cloudevents-core:4.0.2'

}
Loading