mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
Merge branch '2343-mailbox-as-submodule' into 'master'
End-to-end integration tests for communication via mailbox Closes #2343 See merge request briar/briar!1699
This commit is contained in:
19
build.gradle
19
build.gradle
@@ -28,12 +28,8 @@ buildscript {
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.0.3'
|
||||
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.5.3'
|
||||
classpath files('libs/gradle-witness.jar')
|
||||
}
|
||||
ext {
|
||||
kotlin_version = '1.7.10'
|
||||
dagger_version = "2.33"
|
||||
// okhttp 3.12.x is supported until end of 2021, newer versions need minSdk 21
|
||||
okhttp_version = "3.12.13"
|
||||
@@ -44,4 +40,17 @@ buildscript {
|
||||
junit_version = "4.13.2"
|
||||
jmock_version = '2.12.0'
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.0.3'
|
||||
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.5.3'
|
||||
classpath files('libs/gradle-witness.jar')
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
}
|
||||
}
|
||||
|
||||
if ((project.hasProperty("briar.mailbox_integration_tests") && project.property("briar.mailbox_integration_tests") == "true")
|
||||
|| System.env.MAILBOX_INTEGRATION_TESTS) {
|
||||
configure([project(':mailbox-core'), project(':mailbox-lib')]) {
|
||||
apply from: "../gradle/variables.gradle"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user