Files
github-up-for-grabs/model/build.gradle.kts
Julien Lengrand-Lambert 7186a84114 Creates repository
2021-06-30 10:17:11 +02:00

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()
}