-
Notifications
You must be signed in to change notification settings - Fork 25
/
settings.gradle
48 lines (47 loc) · 1.39 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
buildscript {
repositories {
mavenCentral()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw")
}
}
dependencies {
classpath("com.android.tools:r8:8.5.35")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url "http://appboy.github.io/appboy-android-sdk/sdk"
allowInsecureProtocol = true
}
maven { url "https://pkgs.dev.azure.com/MicrosoftDeviceSDK/DuoSDK-Public/_packaging/Duo-SDK-Feed/maven/v1" }
maven {
url = uri("https://jitpack.io")
}
}
}
//Workaround for AS Iguana https://github.com/gradle/gradle/issues/28407
//When Android Studio Iguana or later attempts to rebuild the project, the build fails with:
//Unable to make progress running work. There are items queued for execution but none of them can be started
gradle.startParameter.excludedTaskNames.addAll([":buildSrc:testClasses"])
rootProject.name = "OpenEdX"
include ':app'
include ':core'
include ':auth'
include ':course'
include ':dashboard'
include ':discovery'
include ':profile'
include ':discussion'
include ':whatsnew'