-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle.kts
46 lines (40 loc) · 1.65 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
44
45
46
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
applyMavenLocal(this)
maven { setUrl("https://maven.aliyun.com/repository/gradle-plugin") }
maven { setUrl("https://maven.aliyun.com/repository/central") }
maven { setUrl("https://maven.aliyun.com/repository/google") }
maven { setUrl("https://jitpack.io") }
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath("com.android.tools.build:gradle:$ANDROID_GRADLE_VERSION")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION")
classpath("org.jetbrains.kotlin:kotlin-serialization:$KOTLIN_VERSION")
classpath("com.vanniktech:gradle-maven-publish-plugin:0.14.2")
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.4.30")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// classpath("$LIB_GROUP_ID:bytecodeutil-plugin:$LIB_VERSION")
// demo plugin
// classpath("$PROJECT_LIB_GROUP_ID:demo-plugin:$PROJECT_LIB_VERSION")
}
}
subprojects {
repositories {
applyMavenLocal(this)
maven { setUrl("https://maven.aliyun.com/repository/gradle-plugin") }
maven { setUrl("https://maven.aliyun.com/repository/central") }
maven { setUrl("https://maven.aliyun.com/repository/google") }
maven { setUrl("https://jitpack.io") }
google()
mavenCentral()
}
projectConfigure()
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
}