diff --git a/build.gradle b/build.gradle index 2a9fb9d..06983a6 100644 --- a/build.gradle +++ b/build.gradle @@ -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' @@ -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' } diff --git a/gradle.properties b/gradle.properties index a5429b4..17b5227 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ package=cloud.qubits -systemProp.version=3.22.1 +systemProp.version=4.0.5 reactive=true lombok=true metrics=true @@ -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 \ No newline at end of file +systemProp.sonar.gradle.skipCompile=true +onlyUpdater=true \ No newline at end of file diff --git a/main.gradle b/main.gradle index c769ac7..0d80e78 100644 --- a/main.gradle +++ b/main.gradle @@ -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 @@ -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'