Project

General

Profile

Download (583 Bytes) Statistics
| Branch: | Revision:

kotlin-library / settings.gradle.kts @ master

1
pluginManagement {
2
    repositories {
3
        google {
4
            content {
5
                includeGroupByRegex("com\\.android.*")
6
                includeGroupByRegex("com\\.google.*")
7
                includeGroupByRegex("androidx.*")
8
            }
9
        }
10
        mavenCentral()
11
        gradlePluginPortal()
12
    }
13
}
14
dependencyResolutionManagement {
15
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
16
    repositories {
17
        google()
18
        mavenCentral()
19
    }
20
}
21

    
22
rootProject.name = "kotlin-library"
23
include(":distorted-examples")
24
include(":distorted-library")
(6-6/6)