Files

20 lines
528 B
Kotlin
Raw Permalink Normal View History

2019-12-17 22:09:33 -05:00
plugins {
`java-library`
}
2024-01-15 18:57:48 +00:00
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
2019-12-17 22:09:33 -05:00
dependencies {
api(project(":fibonacci-spi"))
compileOnly("com.google.auto.service:auto-service-annotations:1.0-rc6")
annotationProcessor("com.google.auto.service:auto-service:1.0-rc6")
testImplementation(testFixtures(project(":fibonacci-spi")))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.5.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.5.2")
}
tasks.test {
useJUnitPlatform()
}