From 65e4370143cceb2a7c508628c98ab24963ea837c Mon Sep 17 00:00:00 2001 From: deimagjas Date: Fri, 5 Dec 2025 21:04:11 -0500 Subject: [PATCH] update: plugins versions --- .gitignore | 1 + .idea/.gitignore | 3 -- .idea/.name | 1 - .idea/compiler.xml | 32 ------------------- .idea/jarRepositories.xml | 30 ----------------- .idea/misc.xml | 7 ---- .idea/modules.xml | 9 ------ .../app-service/OpenArc.app-service.main.iml | 8 ----- .../api-rest/OpenArc.api-rest.main.iml | 8 ----- .idea/vcs.xml | 6 ---- applications/app-service/build.gradle | 4 +-- build.gradle | 5 +-- gradle/wrapper/gradle-wrapper.properties | 2 +- 13 files changed, 7 insertions(+), 109 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/.name delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/jarRepositories.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/modules/applications/app-service/OpenArc.app-service.main.iml delete mode 100644 .idea/modules/infrastructure/entry-points/api-rest/OpenArc.api-rest.main.iml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index 9798f46..4463fbd 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ .idea/**/usage.statistics.xml .idea/**/dictionaries .idea/**/shelf +.idea/** # AWS User-specific .idea/**/aws.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 26d3352..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/.idea/.name b/.idea/.name deleted file mode 100644 index cdea5b3..0000000 --- a/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -OpenArc \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index ed63032..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml deleted file mode 100644 index 2da4e19..0000000 --- a/.idea/jarRepositories.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 5cd9a10..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index a6102b9..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/applications/app-service/OpenArc.app-service.main.iml b/.idea/modules/applications/app-service/OpenArc.app-service.main.iml deleted file mode 100644 index 7e53ce8..0000000 --- a/.idea/modules/applications/app-service/OpenArc.app-service.main.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/infrastructure/entry-points/api-rest/OpenArc.api-rest.main.iml b/.idea/modules/infrastructure/entry-points/api-rest/OpenArc.api-rest.main.iml deleted file mode 100644 index a55541b..0000000 --- a/.idea/modules/infrastructure/entry-points/api-rest/OpenArc.api-rest.main.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/applications/app-service/build.gradle b/applications/app-service/build.gradle index 1bce35a..f370b28 100644 --- a/applications/app-service/build.gradle +++ b/applications/app-service/build.gradle @@ -7,7 +7,7 @@ dependencies { implementation project(':usecase') implementation 'org.springframework.boot:spring-boot-starter' runtimeOnly('org.springframework.boot:spring-boot-devtools') - testImplementation 'com.tngtech.archunit:archunit:1.4.0' + testImplementation 'com.tngtech.archunit:archunit:1.4.1' testImplementation 'com.fasterxml.jackson.core:jackson-databind' } @@ -24,4 +24,4 @@ jar { bootJar { // Sets output jar name archiveFileName = "${project.getParent().getName()}.${archiveExtension.get()}" -} +} \ No newline at end of file diff --git a/build.gradle b/build.gradle index 2ef708e..0205ccc 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,12 @@ // ...existing code... buildscript { ext { - cleanArchitectureVersion = '3.23.2' + cleanArchitectureVersion = '3.28.0' springBootVersion = '3.4.4' sonarVersion = '6.1.0.5360' jacocoVersion = '0.8.13' pitestVersion = '1.15.0' - lombokVersion = '1.18.38' + lombokVersion = '1.18.42' } } @@ -16,6 +16,7 @@ plugins { id 'info.solidsoft.pitest' version "${pitestVersion}" apply false id 'org.sonarqube' version "${sonarVersion}" id 'jacoco' + id "com.github.ben-manes.versions" version "0.51.0" } sonar { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9355b41..ca025c8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME