Skip to content

Commit

Permalink
Remove Sonar & Jacoco from Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Nov 8, 2023
1 parent 319e1b7 commit f65618d
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ plugins {
id 'java-library'
id 'eclipse'
id 'idea'
id 'jacoco'
id 'checkstyle'
id 'org.ajoberstar.grgit' version '4.1.1'
id 'io.spring.dependency-management' version '1.1.3'
Expand Down Expand Up @@ -101,10 +100,6 @@ dependencyManagement {
}
}

jacoco {
toolVersion = '0.8.10'
}

checkstyle {
configDirectory.set(rootProject.file('src/checkstyle'))
toolVersion = '10.12.4'
Expand Down Expand Up @@ -181,22 +176,11 @@ ext.xLintArg = '-Xlint:all,-options'

test {
maxHeapSize = '1024m'
jacoco {
destinationFile = file('build/jacoco.exec')
}
useJUnitPlatform()
// suppress all console output during testing unless running `gradle -i`
logging.captureStandardOutput(LogLevel.INFO)
}

jacocoTestReport {
dependsOn test
reports {
xml.required = true
html.required = false
}
}

check.dependsOn javadoc

task updateCopyrights {
Expand Down

0 comments on commit f65618d

Please sign in to comment.