Files
Stirling-PDF/buildSrc/build.gradle
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
549 B
Groovy
Raw Normal View History

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
}