mirror of
https://github.com/plexusorg/Plex.git
synced 2026-06-03 21:16:55 +00:00
27 lines
567 B
Kotlin
27 lines
567 B
Kotlin
plugins {
|
|
java
|
|
`maven-publish`
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:26.1.2.build.+")
|
|
compileOnly("org.apache.logging.log4j:log4j-api:2.26.0")
|
|
compileOnly("com.google.code.gson:gson:2.13.2")
|
|
compileOnly("org.jetbrains:annotations:26.1.0")
|
|
}
|
|
|
|
group = rootProject.group
|
|
version = rootProject.version
|
|
description = "Plex-API"
|
|
|
|
tasks.getByName<Jar>("jar") {
|
|
archiveBaseName.set("Plex-API")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
} |