-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle
44 lines (44 loc) · 1.19 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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven {
url '../Component-publisher/publish-plugin/build/repos/locals'
}
mavenLocal()
}
/*resolutionStrategy {
eachPlugin {
if (requested.id.id == 'component-publisher') {
useModule("cn.dorck.android:component-publisher:1.0.0")
}
}
}*/
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven {
name 'GithubRepo'
url 'https://maven.pkg.github.com/Moosphan/MavenRepo'
credentials {
username 'Moosphan'
password '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'
}
}
maven {
url '../Component-publisher/publish-plugin/build/repos/locals'
}
mavenLocal()
}
}
rootProject.name = "component-publisher"
include ':app'
include ':publish-plugin'
include ':android-library-sample'
include ':kotlin-library-sample'
include ':java-library-sample'