forked from mikaelzero/mojito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
29 lines (29 loc) · 870 Bytes
/
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
buildscript {
apply(from = "buildSrc/plugins.gradle.kts")
repositories {
mavenCentral()
google()
maven("https://jitpack.io")
maven("https://oss.sonatype.org/content/repositories/public")
gradlePluginPortal()
}
dependencies {
classpath(rootProject.extra["androidPlugin"].toString())
classpath(rootProject.extra["kotlinPlugin"].toString())
classpath(rootProject.extra["mavenPublishPlugin"].toString())
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
}
}
tasks.register<Delete>(name = "clean") {
group = "build"
delete(rootProject.buildDir)
}
allprojects {
repositories {
mavenCentral()
google()
maven("https://jitpack.io")
maven("https://oss.sonatype.org/content/repositories/public")
gradlePluginPortal()
}
}