blob: 3b00300c2d997aa5cb9ceb364317cb60401ef785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
apply plugin: 'kotlin-platform-jvm'
apply plugin: "kotlin-kapt"
apply plugin: "maven"
dependencies {
compile "de.jensklingenberg:mpapt-runtime:$mpaptRuntimeVersion"
expectedBy project(":kvision-modules:kvision-common-annotations")
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compileOnly "org.jetbrains.kotlin:kotlin-compiler-embeddable"
compileOnly "com.google.auto.service:auto-service:$autoServiceVersion"
kapt "com.google.auto.service:auto-service:$autoServiceVersion"
}
kapt {
includeCompileClasspath = false
}
|