Skip to content
Merged
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
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ...existing code...
buildscript {
ext {
cleanArchitectureVersion = '3.28.0'
cleanArchitectureVersion = '4.0.5'
springBootVersion = '3.5.7'
sonarVersion = '7.0.1.6134'
jacocoVersion = '0.8.14'
Expand All @@ -11,10 +11,10 @@ buildscript {
}

plugins {
id 'co.com.bancolombia.cleanArchitecture' version '3.28.0'
id 'org.springframework.boot' version '4.0.0' apply false
id 'co.com.bancolombia.cleanArchitecture' version '4.0.5'
id 'org.springframework.boot' version '4.0.1' apply false
id 'info.solidsoft.pitest' version '1.19.0-rc.2' apply false
id 'org.sonarqube' version '7.2.1.6560'
id 'org.sonarqube' version '7.2.2.6593'
id 'jacoco'
id 'com.github.ben-manes.versions' version '0.53.0'
}
Expand Down
5 changes: 3 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package=cloud.qubits
systemProp.version=3.22.1
systemProp.version=4.0.5
reactive=true
lombok=true
metrics=true
Expand All @@ -9,4 +9,5 @@ org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.configuration-cache.parallel=true
org.gradle.configuration-cache.integrity-check=true
systemProp.sonar.gradle.skipCompile=true
systemProp.sonar.gradle.skipCompile=true
onlyUpdater=true
4 changes: 2 additions & 2 deletions main.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ subprojects {
apply plugin: 'io.spring.dependency-management'
apply plugin: 'info.solidsoft.pitest'

compileJava.dependsOn validateStructure
//compileJava.dependsOn validateStructure

java {
sourceCompatibility = JavaVersion.VERSION_21
Expand All @@ -31,7 +31,7 @@ subprojects {
implementation 'io.projectreactor:reactor-core'
implementation 'io.projectreactor.addons:reactor-extra'

testImplementation 'io.projectreactor.tools:blockhound-junit-platform:1.0.15.RELEASE'
testImplementation 'io.projectreactor.tools:blockhound-junit-platform:1.0.16.RELEASE'

testImplementation 'io.projectreactor:reactor-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
Expand Down