Skip to content

Commit

Permalink
test(framework): Use annotation processor
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Apr 1, 2024
1 parent 290d430 commit 7846dc1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ dependencies {
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: hamcrestVersion

testAnnotationProcessor group: 'com.google.dagger', name: 'dagger-compiler', version: daggerVersion
testAnnotationProcessor project(':annotation-processor')
}

compileTestJava {
// Required for the annotation processor
options.sourcepath = sourceSets.main.resources.getSourceDirectories() +
sourceSets.test.resources.getSourceDirectories()
}

test {
Expand Down

0 comments on commit 7846dc1

Please sign in to comment.