-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
41 lines (36 loc) · 1.17 KB
/
settings.gradle.kts
File metadata and controls
41 lines (36 loc) · 1.17 KB
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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/syslogic/gpr-maintanance-gradle-plaugin")
if (System.getenv("GITHUB_ACTOR") != null && System.getenv("GITHUB_ACTOR") != null) {
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven { url = uri("https://repo.eclipse.org/content/groups/releases/") }
mavenCentral()
google()
}
}
rootProject.name = "androidx-github-client"
include(":library")
project(":library").name = "androidx-github"
/* GitHub & JitPack: don't include module `:mobile` */
if (System.getenv("JITPACK") == null && System.getenv("GITHUB_ACTIONS") == null) {
include(":mobile")
}