mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-17 08:05:35 +01:00
Add jacoco report gradle plugin
This commit is contained in:
parent
8fbd79139d
commit
6d8b6bd3fe
@ -1,11 +1,16 @@
|
||||
plugins {
|
||||
id("java-library")
|
||||
id("jacoco")
|
||||
}
|
||||
|
||||
test {
|
||||
useJUnitPlatform {}
|
||||
}
|
||||
|
||||
jacocoTestReport {
|
||||
dependsOn test
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
|
||||
|
@ -1,5 +1,7 @@
|
||||
plugins {
|
||||
alias(libs.plugins.shadow)
|
||||
id("jacoco")
|
||||
id("jacoco-report-aggregation")
|
||||
}
|
||||
|
||||
sourceCompatibility = 17
|
||||
@ -13,6 +15,10 @@ test {
|
||||
}
|
||||
}
|
||||
|
||||
jacocoTestReport {
|
||||
dependsOn test
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':common')
|
||||
compileOnly project(':common:loader-utils')
|
||||
|
Loading…
Reference in New Issue
Block a user