mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-03 05:10:16 +03:00
23 lines
549 B
Groovy
23 lines
549 B
Groovy
plugins {
|
|||
|
|
id 'groovy'
|
||
|
|
}
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
gradlePluginPortal()
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation localGroovy()
|
||
|
|
implementation gradleApi()
|
||
|
|
implementation 'com.github.jk1:gradle-license-report:3.1.4'
|
||
|
|
testImplementation platform('org.junit:junit-bom:6.1.2')
|
||
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
||
|
|
}
|
||
|
|
|
||
|
|
tasks.named('test') {
|
||
|
|
useJUnitPlatform()
|
||
|
|
jvmArgs '--add-opens=java.base/java.lang=ALL-UNNAMED'
|
||
|
|
testLogging.showStandardStreams = true
|
||
|
|
}
|