mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
23 lines
348 B
Kotlin
23 lines
348 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"]}")
|
|
} |