Skip to content

Commit aaf5f1d

Browse files
committed
fix(deps): Update dependencies
1 parent 10abaf7 commit aaf5f1d

File tree

22 files changed

+212
-152
lines changed

22 files changed

+212
-152
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
java-version: 17
4242
- name: Execute build test jacocoTestReport and sonar analysis
4343
if: endsWith(github.REF, '/master') == true
44-
env:
44+
env
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
47-
run: ./gradlew build test jacocoTestReport sonarqube --refresh-dependencies --no-daemon --continue -Denv.ci=true
47+
run: ./gradlew build test jacocoTestReport sonar --refresh-dependencies --no-daemon --continue -Denv.ci=true
4848
- name: Execute build test jacocoTestReport pull request
4949
if: endsWith(github.REF, '/merge') == true
5050
env:

acceptance/async-tests/async-tests.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ dependencies {
33
implementation 'org.springframework.boot:spring-boot-starter'
44
}
55

6-
test.onlyIf { false }
6+
test.onlyIf { false }

async/async-commons-api/async-commons-api.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ dependencies {
77
api project(':domain-events-api')
88
compileOnly 'io.projectreactor:reactor-core'
99
testImplementation 'io.projectreactor:reactor-test'
10-
implementation "io.cloudevents:cloudevents-json-jackson:${cloudEventsVersion}"
11-
}
10+
implementation 'io.cloudevents:cloudevents-json-jackson:4.0.1'
11+
}

async/async-commons/async-commons.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ dependencies {
88
api project(':domain-events-api')
99

1010
compileOnly 'io.projectreactor:reactor-core'
11-
api "io.projectreactor.rabbitmq:reactor-rabbitmq:${reactorRabbitVersion}"
11+
api 'io.projectreactor.rabbitmq:reactor-rabbitmq:1.5.6'
1212
api 'com.fasterxml.jackson.core:jackson-databind'
13-
implementation 'commons-io:commons-io:2.11.0'
13+
implementation 'commons-io:commons-io:2.16.1'
1414

1515
testImplementation 'io.projectreactor:reactor-test'
16-
}
16+
}

async/async-rabbit-starter-eda/async-commons-rabbit-starter-eda.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ dependencies {
1313

1414
testImplementation 'io.projectreactor:reactor-test'
1515
testImplementation 'org.springframework.boot:spring-boot-starter-actuator'
16-
}
16+
}

async/async-rabbit-starter/async-commons-rabbit-starter.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ dependencies {
1212

1313
testImplementation 'io.projectreactor:reactor-test'
1414
testImplementation 'org.springframework.boot:spring-boot-starter-actuator'
15-
}
15+
}

async/async-rabbit/async-rabbit.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ dependencies {
1414
api 'com.rabbitmq:amqp-client'
1515
api 'com.fasterxml.jackson.core:jackson-databind'
1616
testImplementation 'io.projectreactor:reactor-test'
17-
implementation "io.cloudevents:cloudevents-json-jackson:${cloudEventsVersion}"
18-
}
17+
implementation 'io.cloudevents:cloudevents-json-jackson:4.0.1'
18+
}

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,19 @@ buildscript {
66
}
77

88
dependencies {
9-
classpath("com.github.ben-manes:gradle-versions-plugin:$gradleVersionsVersion")
9+
classpath('com.github.ben-manes:gradle-versions-plugin:0.11.1')
1010
}
1111
}
1212

1313
plugins {
1414
id 'jacoco'
15-
id 'org.sonarqube' version '3.0'
16-
id 'org.springframework.boot' version "${springBootVersion}" apply false
15+
id 'org.sonarqube' version '5.1.0.4882'
16+
id 'org.springframework.boot' version '3.3.1' apply false
1717
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0'
18+
id 'co.com.bancolombia.cleanArchitecture' version '3.17.13'
1819
}
1920

20-
sonarqube {
21+
sonar {
2122
properties {
2223
property 'sonar.projectKey', 'reactive-commons_reactive-commons-java'
2324
property 'sonar.coverage.exclusions', 'samples/**/*'
@@ -31,4 +32,4 @@ repositories {
3132
}
3233

3334
apply from: './main.gradle'
34-
apply plugin: 'com.github.ben-manes.versions'
35+
apply plugin: 'com.github.ben-manes.versions'

domain/domain-events/domain-events-api.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ ext {
44
}
55

66
dependencies {
7-
api "org.reactivestreams:reactive-streams:${reactiveStreamsVersion}"
8-
api "io.cloudevents:cloudevents-api:${cloudEventsVersion}"
9-
}
7+
api 'org.reactivestreams:reactive-streams:1.0.4'
8+
api 'io.cloudevents:cloudevents-api:4.0.1'
9+
}

gradle.properties

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
version=4.1.1
2-
springBootVersion=3.2.5
3-
reactorRabbitVersion=1.5.5
4-
cloudEventsVersion=3.0.0
5-
reactiveStreamsVersion=1.0.4
6-
gradleVersionsVersion=0.36.0
7-
toPublish=async-commons,async-commons-api,async-commons-rabbit-standalone,async-commons-rabbit-starter,async-commons-rabbit-starter-eda,domain-events-api,async-rabbit
2+
toPublish=async-commons,async-commons-api,async-commons-rabbit-standalone,async-commons-rabbit-starter,async-commons-rabbit-starter-eda,domain-events-api,async-rabbit
3+
onlyUpdater=true

gradle/wrapper/gradle-wrapper.jar

2.32 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)