-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathrepos.gradle
35 lines (33 loc) · 1.08 KB
/
repos.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
/**************************************************************************************************
ODK-X GITHUB REPOSITORY DECLARATIONS
*************************************************************************************************/
allprojects {
repositories {
google()
mavenCentral()
maven {
name = "ODKXSyncEndpointGithubPackages"
url = "https://maven.pkg.github.com/odk-x/sync-endpoint"
credentials {
username = githubMvnUser
password = githubMvnPass
}
}
maven {
name = "ODKXAndroidLibary"
url = "https://maven.pkg.github.com/odk-x/androidlibrary"
credentials {
username = githubMvnUser
password = githubMvnPass
}
}
maven {
name = "ODKXAndroidCommon"
url = "https://maven.pkg.github.com/odk-x/androidcommon"
credentials {
username = githubMvnUser
password = githubMvnPass
}
}
}
}