ReloadableHiltModule/processor/build.gradle
dependabot[bot] 811faea21d
Bump junit-jupiter-engine from 5.7.0 to 5.8.2
Bumps [junit-jupiter-engine](https://github.com/junit-team/junit5) from 5.7.0 to 5.8.2.
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.7.0...r5.8.2)

---
updated-dependencies:
- dependency-name: org.junit.jupiter:junit-jupiter-engine
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-11-29 12:10:21 +00:00

35 lines
No EOL
1.1 KiB
Groovy

apply plugin: 'java-library'
apply plugin: 'kotlin'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
test {
useJUnitPlatform()
testLogging {
events 'started', 'passed', 'skipped', 'failed'
exceptionFormat "full"
showStandardStreams true
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "com.squareup:javapoet:1.13.0"
implementation project(":annotation")
implementation "com.google.dagger:hilt-core:$hilt_version"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.2"
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.7.0"
testImplementation "com.github.tschuchortdev:kotlin-compile-testing:1.4.2"
testRuntimeOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlin_version")
testRuntimeOnly("org.jetbrains.kotlin:kotlin-annotation-processing-embeddable:$kotlin_version")
}
sourceCompatibility = "8"
targetCompatibility = "8"
project.ext.set("library_artifact","annotation-processor")
apply from: "../deploy.gradle"