1
0
Fork 0
mirror of https://github.com/gradle/gradle-build-action.git synced 2025-01-20 21:09:17 -05:00
gradle-build-action/__tests__/samples/kotlin-dsl/build.gradle.kts
2021-09-12 10:30:49 -06:00

18 lines
296 B
Kotlin

plugins {
`java-library`
}
repositories {
mavenCentral()
}
dependencies {
api("org.apache.commons:commons-math3:3.6.1")
implementation("com.google.guava:guava:30.1.1-jre")
testImplementation("org.junit.jupiter:junit-jupiter:5.7.2")
}
tasks.test {
useJUnitPlatform()
}