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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,5 @@ gradle-app.setting
# Java heap dump
*.hprof
#
# End of https://www.toptal.com/developers/gitignore/api/java,gradle,intellij
# End of https://www.toptal.com/developers/gitignore/api/java,gradle,intellij
build-cache
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
buildscript {
ext {
cleanArchitectureVersion = '3.28.0'
springBootVersion = '3.4.4'
sonarVersion = '6.1.0.5360'
jacocoVersion = '0.8.13'
springBootVersion = '3.5.7'
sonarVersion = '7.0.1.6134'
jacocoVersion = '0.8.14'
pitestVersion = '1.15.0'
lombokVersion = '1.18.42'
}
Expand All @@ -26,14 +26,14 @@ sonar {
property "sonar.modules", "${modules.join(',')}"
property "sonar.sources", "src,deployment,settings.gradle,main.gradle,build.gradle,${modules.collect { "${it}/build.gradle" }.join(',')}"
property "sonar.exclusions","**/MainApplication.java"
property "sonar.test", "src/test"
property "sonar.java.binaries", ""
property "sonar.junit.reportsPath", ""
property "sonar.tests", "src/test"
property "sonar.java.binaries", "**/build/classes/java/main"
property "sonar.junit.reportsPath", "**/build/test-results/test"
property "sonar.java.coveragePlugin", "jacoco"
property "sonar.coverage.jacoco.xmlReportPaths", "build/reports/jacocoMergedReport/jacocoMergedReport.xml"
property "sonar.pitest.reportPaths", "build/reports/pitest/mutations.xml"
property "sonar.externalIssuesReportPaths", "build/issues.json"
}
}

apply from: './main.gradle'
apply from: './main.gradle'
6 changes: 5 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@ lombok=true
metrics=true
language=java
org.gradle.parallel=true
systemProp.sonar.gradle.skipCompile=true
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
4 changes: 2 additions & 2 deletions main.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,5 @@ pitestReportAggregate {
}

tasks.named('wrapper') {
gradleVersion = '8.13'
}
gradleVersion = '8.14.3'
}
6 changes: 6 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ pluginManagement {
}
}

buildCache {
local {
directory = new File(rootDir, 'build-cache')
}
}

rootProject.name = 'OpenArc'

include ':app-service'
Expand Down