forked from emansih/FireflyMobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
42 lines (40 loc) · 1.18 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
buildscript {
repositories {
google()
jcenter()
maven("https://dl.bintray.com/florent37/maven")
gradlePluginPortal()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:4.1.1")
classpath(kotlin("gradle-plugin", Dependencies.kotlinVersion))
classpath("com.project.starter:easylauncher:3.2.1")
classpath("com.github.ben-manes:gradle-versions-plugin:0.28.0")
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.6.2.0")
}
}
allprojects {
repositories {
google {
content {
includeGroupByRegex("com.android.*")
includeGroupByRegex ("androidx.*")
includeGroup("com.google.android.material")
}
}
maven("https://jitpack.io")
jcenter()
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")
}