mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
25 lines
383 B
Kotlin
25 lines
383 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
group = "de.grimsi.gameyfin"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// PF4J (shared)
|
|
api("org.pf4j:pf4j:${rootProject.extra["pf4jVersion"]}") {
|
|
exclude(group = "org.slf4j")
|
|
}
|
|
|
|
implementation(kotlin("stdlib"))
|
|
|
|
// Test dependencies
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |