-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle.kts
22 lines (21 loc) · 881 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
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${versions["kotlin"]}")
classpath("com.github.johnrengelman:shadow:${versions["shadow"]}")
classpath("org.jetbrains.dokka:dokka-gradle-plugin:${versions["dokka"]}")
classpath("com.android.tools.build:gradle:${versions["androidGradle"]}")
classpath("com.gradle.publish:plugin-publish-plugin:${versions["pluginPublish"]}")
classpath("dev.reformator.bytecodeprocessor:bytecode-processor-plugins")
classpath("dev.reformator.bytecodeprocessor:bytecode-processor-intrinsics")
classpath("dev.reformator.decoroutinatortest:decoroutinatortest")
}
}
subprojects {
group = "dev.reformator.stacktracedecoroutinator"
version = "2.4.8"
}