-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle
33 lines (29 loc) · 987 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* Gradle's setting file which references all modules.
*
* @author Armin Schnabel
* @version 1.3.0
* @since 1.0.0
*/
pluginManagement {
plugins {
/**
* To fix `Plugin request for plugin already on the classpath must not include a version`
* when executing `./gradlew build` from the app including this SDK.
*/
id 'de.undercouch.download' version '4.1.1'
}
repositories {
gradlePluginPortal()
maven {
url = uri("https://maven.pkg.github.com/cyface-de/android-publish")
// Needed even for public projects: https://github.uint.cloudmunity/t5/GitHub-API-Development-and/Download-from-Github-Package-Registry-without-authentication/m-p/35255
credentials {
username "$githubUser"
password "$githubToken"
}
}
}
}
rootProject.name = "android-backend"
include ':datacapturing', ':persistence', ':synchronization', ':testutils'