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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
.idea/**

# AWS User-specific
.idea/**/aws.xml
Expand Down
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

32 changes: 0 additions & 32 deletions .idea/compiler.xml

This file was deleted.

30 changes: 0 additions & 30 deletions .idea/jarRepositories.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/modules.xml

This file was deleted.

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

4 changes: 2 additions & 2 deletions applications/app-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

Expand All @@ -24,4 +24,4 @@ jar {
bootJar {
// Sets output jar name
archiveFileName = "${project.getParent().getName()}.${archiveExtension.get()}"
}
}
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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'
}
}

Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down