Skip to content

Commit

Permalink
Update :: jacoco 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
leeseojune53 committed Jul 23, 2021
1 parent c94182b commit 258221b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ plugins {
id 'org.springframework.boot' version '2.5.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'jacoco'
}

group = 'io.github.opgg'
version = '0.0.1'
sourceCompatibility = '11'
sourceCompatibility = JavaVersion.VERSION_11

repositories {
mavenCentral()
Expand Down Expand Up @@ -36,3 +37,10 @@ dependencies {
test {
useJUnitPlatform()
}

jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}

0 comments on commit 258221b

Please sign in to comment.