17 lines
439 B
Groovy
17 lines
439 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'kotlin'
|
|
id 'kotlin-kapt'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':deep-kotlin-lib')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation "com.google.dagger:hilt-core:LOCAL-SNAPSHOT"
|
|
kapt "com.google.dagger:hilt-compiler:LOCAL-SNAPSHOT"
|
|
} |