mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
36 lines
859 B
Groovy
36 lines
859 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
mavenLocal()
|
|
google()
|
|
}
|
|
afterEvaluate {
|
|
tasks.withType(Test) {
|
|
// Allow tests to be re-run if any optional tests are enabled
|
|
outputs.upToDateWhen { System.getenv("OPTIONAL_TESTS") == null }
|
|
// Use entropy-gathering device specified on command line, if any
|
|
systemProperty 'java.security.egd', System.getProperty('java.security.egd')
|
|
}
|
|
}
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenLocal()
|
|
google()
|
|
maven {
|
|
url 'https://plugins.gradle.org/m2/'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.2.0'
|
|
classpath 'net.ltgt.gradle:gradle-apt-plugin:0.18'
|
|
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.4.6'
|
|
classpath files('libs/gradle-witness.jar')
|
|
}
|
|
}
|