mirror of
https://github.com/plexusorg/Plex.git
synced 2026-06-03 21:16:55 +00:00
55 lines
1.1 KiB
Kotlin
55 lines
1.1 KiB
Kotlin
plugins {
|
|
java
|
|
`maven-publish`
|
|
id("org.jetbrains.gradle.plugin.idea-ext")
|
|
id("net.kyori.blossom")
|
|
id("com.gradleup.shadow")
|
|
}
|
|
|
|
group = rootProject.group
|
|
version = rootProject.version
|
|
description = "Plex-Velocity"
|
|
|
|
repositories {
|
|
maven { url = uri("https://repo.papermc.io/repository/maven-public/") }
|
|
}
|
|
|
|
tasks.getByName<Jar>("jar") {
|
|
archiveBaseName.set("Plex-Velocity")
|
|
}
|
|
|
|
tasks {
|
|
jar {
|
|
finalizedBy(rootProject.tasks["copyJars"])
|
|
}
|
|
|
|
shadowJar {
|
|
enabled = false
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
blossom {
|
|
javaSources {
|
|
property("version", project.version.toString())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("org.projectlombok:lombok:1.18.46")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.46")
|
|
compileOnly("org.json:json:20251224")
|
|
compileOnly("com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
|
|
annotationProcessor("com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
|
|
} |