mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-14 00:50:00 +00:00
32 lines
490 B
Kotlin
32 lines
490 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
}
|
|
|
|
group = "de.grimsi.gameyfin"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// PF4J (shared)
|
|
api("org.pf4j:pf4j:${rootProject.extra["pf4jVersion"]}")
|
|
|
|
implementation(kotlin("stdlib"))
|
|
|
|
// Test dependencies
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |