forked from j-easy/easy-rules
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle
42 lines (36 loc) · 1.22 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
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user guide at https://docs.gradle.org/5.1.1/userguide/multi_project_builds.html
*/
pluginManagement {
resolutionStrategy {
eachPlugin {
if (requested.id.id == "kotlin-multiplatform") {
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
}
if (requested.id.id == "com.android.library") {
useModule("com.android.tools.build:gradle:${requested.version}")
}
if (requested.id.id == "com.android.application") {
useModule("com.android.tools.build:gradle:${requested.version}")
}
}
}
repositories {
google()
jcenter()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview("GRADLE_METADATA")
rootProject.name = 'easy-rules-kotlin'
include(":easy-rules-api")
include(":easy-rules-core")
/*include(":easy-rules-core-annotation")
include(":easy-rules-support")
include(":easy-rules-tutorials")*/