mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-11 18:29:05 +01:00
27 lines
1.2 KiB
Groovy
27 lines
1.2 KiB
Groovy
include ':bramble-api'
|
|
include ':bramble-core'
|
|
include ':bramble-android'
|
|
include ':bramble-java'
|
|
include ':briar-api'
|
|
include ':briar-core'
|
|
include ':briar-android'
|
|
include ':briar-headless'
|
|
include ':onionwrapper-core'
|
|
include ':onionwrapper-java'
|
|
include ':onionwrapper-android'
|
|
project (':onionwrapper-core').projectDir = file('onionwrapper/onionwrapper-core')
|
|
project (':onionwrapper-java').projectDir = file('onionwrapper/onionwrapper-java')
|
|
project (':onionwrapper-android').projectDir = file('onionwrapper/onionwrapper-android')
|
|
// Enable the mailbox integration tests by passing
|
|
// `MAILBOX_INTEGRATION_TESTS=true ./gradlew mailbox-integration-tests:test`
|
|
// on the command line (for CI etc) or set `briar.mailbox_integration_tests=true`
|
|
// in gradle.properties to enable the modules for local development.
|
|
if (ext.has("briar.mailbox_integration_tests") && ext.get("briar.mailbox_integration_tests") == "true"
|
|
|| System.env.MAILBOX_INTEGRATION_TESTS) {
|
|
include ':mailbox-integration-tests'
|
|
include(":mailbox-core")
|
|
include(":mailbox-lib")
|
|
project(":mailbox-core").projectDir = file("briar-mailbox/mailbox-core")
|
|
project(":mailbox-lib").projectDir = file("briar-mailbox/mailbox-lib")
|
|
}
|