mirror of
https://github.com/jlengrand/github-up-for-grabs.git
synced 2026-03-10 08:11:19 +00:00
26 lines
503 B
Kotlin
26 lines
503 B
Kotlin
plugins {
|
|
java
|
|
kotlin("jvm") version "1.5.20"
|
|
}
|
|
|
|
group = "me.lengrand.gufg"
|
|
version = "unspecified"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven{
|
|
url = uri("https://repo.gradle.org/gradle/libs-releases")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
|
|
|
|
implementation(gradleApi())
|
|
}
|
|
|
|
tasks.getByName<Test>("test") {
|
|
useJUnitPlatform()
|
|
} |