-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
build.gradle.kts
43 lines (41 loc) · 1.3 KB
/
build.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
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath("com.android.tools.build:gradle:7.4.0")
classpath(kotlin("gradle-plugin", Dependencies.kotlinVersion))
classpath("com.project.starter:easylauncher:3.2.1")
classpath("com.github.ben-manes:gradle-versions-plugin:0.39.0")
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1")
}
}
allprojects {
repositories {
google {
content {
includeGroupByRegex("com.android.*")
includeGroupByRegex ("androidx.*")
includeGroup("com.google.android.material")
includeGroup("com.google.devtools.ksp")
}
}
mavenCentral()
maven("https://jitpack.io")
// TODO: Remove by end of Dec 2021
// https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
/*maven("https://dl.bintray.com/florent37/maven") {
content{
includeGroup("com.github.florent37")
}
}*/
dependencies{
apply("$rootDir/buildSrc/src/main/java/Version.gradle")
}
}
}
subprojects {
apply("$rootDir/buildSrc/src/main/java/DependencyReport.gradle")
}