-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
51 lines (51 loc) · 1.43 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
49
50
51
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
mavenCentral()
google()
}
resolutionStrategy {
eachPlugin {
def pluginId = it.requested.id.id
if (pluginId == "com.likethesalad.artifact-publisher") {
useModule("com.likethesalad.tools:artifact-publisher:${it.requested.version}")
}
if (it.requested.id.namespace == "com.likethesalad.tools") {
useModule("com.likethesalad.tools:plugin-tools:${it.requested.version}")
}
}
}
}
dependencyResolutionManagement {
versionCatalogs {
libs {
version('kotlin', getProperty("kotlin.version"))
}
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
mavenCentral()
google()
}
}
buildscript {
repositories {
gradlePluginPortal()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${getProperty("kotlin.version")}"
}
}
rootProject.name = 'resource-locator'
include ':android-resource-locator'
include ":resource-collector"
include ":resource-api"
include ':resource-serializer'
include ':android-resource-serializer'
include ':android-resource-api'
include ':android-resource-collector'
include ':string-android-resource-locator'
include ':android-resource-locator-test'