13 lines
236 B
Groovy
13 lines
236 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.dagger2
|
|
annotationProcessor libs.dagger.compiler
|
|
} |