blob: b9ba1ecd233088bbcb9ff3e9a03217fa009cc3e5 [file] [log] [blame]
dependencies {
if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_15)) {
testImplementation libs.bcpkix // this should be skipped
}
whatever = runtimeOnly("ignoredIdentifier") // should be ignored, it's not configuration, but function invocation
runtimeOnly('org.hibernate:hibernate:3.0.5') {
transitive = true
}
runtimeOnly group: 'org.hibernate', name: 'hibernate', version: '3.0.5', transitive: true
}