mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
20 lines
377 B
Groovy
20 lines
377 B
Groovy
apply plugin: 'java-library'
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
apply plugin: 'witness'
|
|
|
|
dependencies {
|
|
implementation project(path: ':bramble-api', configuration: 'default')
|
|
}
|
|
|
|
dependencyVerification {
|
|
verify = [
|
|
]
|
|
}
|
|
|
|
// If a Java 6 JRE is available, check we're not using any Java 7 or 8 APIs
|
|
tasks.withType(JavaCompile) {
|
|
useJava6StandardLibrary(it)
|
|
}
|