forked from AndroidIDEOfficial/AndroidIDE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
executable file
·100 lines (92 loc) · 2.39 KB
/
settings.gradle.kts
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
@file:Suppress("UnstableApiUsage")
import com.mooltiverse.oss.nyx.gradle.NyxExtension
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins { id("com.mooltiverse.oss.nyx") version "2.4.5" }
extensions.configure<NyxExtension> {
git {
remotes.register("origin") {
user.set("{{#environmentVariable}}GH_TOKEN{{/environmentVariable}}")
password.set("")
}
}
configurationFile.set(".nyx.yml")
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/") }
maven { url = uri("https://jitpack.io") }
maven { url = uri("https://repo.gradle.org/gradle/libs-releases/") }
maven { url = uri("https://repo.eclipse.org/content/repositories/lemminx-snapshots/") }
}
}
rootProject.name = "AndroidIDE"
include(
":annotation-processors",
":annotation-processors-ksp",
":annotations",
":actions",
":app",
":build-info",
":common",
":editor",
":editor-api",
":emulatorview",
":eventbus",
":eventbus-android",
":eventbus-events",
":gradle-plugin",
":idestats",
":lexers",
":logger",
":logsender",
":logsender-sample",
":lookup",
":preferences",
":resources",
":shared",
":templates-api",
":templates-impl",
":treeview",
":uidesigner",
":xml-inflater",
":lsp:api",
":lsp:models",
":lsp:java",
":lsp:xml",
":lsp:testing",
":subprojects:aaptcompiler",
":subprojects:builder-model-impl",
":subprojects:classfile",
":subprojects:flashbar",
":subprojects:framework-stubs",
":subprojects:fuzzysearch",
":subprojects:google-java-format",
":subprojects:java-compiler",
":subprojects:javac",
":subprojects:javac-services",
":subprojects:javapoet",
":subprojects:jaxp",
":subprojects:jdk-compiler",
":subprojects:jdk-jdeps",
":subprojects:jdt",
":subprojects:layoutlib-api",
":subprojects:projects",
":subprojects:tooling-api",
":subprojects:tooling-api-events",
":subprojects:tooling-api-impl",
":subprojects:tooling-api-model",
":subprojects:tooling-api-testing",
":subprojects:xml-dom",
":subprojects:xml-utils"
)