Minestom/build.gradle.kts

184 lines
5.2 KiB
Plaintext
Raw Normal View History

2022-01-01 18:27:52 +01:00
plugins {
`java-library`
alias(libs.plugins.blossom)
`maven-publish`
signing
alias(libs.plugins.nexuspublish)
2022-01-01 18:27:52 +01:00
}
version = System.getenv("SHORT_COMMIT_HASH") ?: "dev"
2022-01-01 18:27:52 +01:00
allprojects {
apply(plugin = "java")
group = "net.minestom"
version = rootProject.version
2022-01-01 18:27:52 +01:00
description = "Lightweight and multi-threaded Minecraft server implementation"
repositories {
mavenCentral()
maven(url = "https://jitpack.io")
}
configurations.all {
// We only use Jetbrains Annotations
exclude("org.checkerframework", "checker-qual")
}
java {
withSourcesJar()
withJavadocJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<Zip> {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
tasks.withType<Test> {
useJUnitPlatform()
// Viewable packets make tracking harder. Could be re-enabled later.
jvmArgs("-Dminestom.viewable-packet=false")
jvmArgs("-Dminestom.inside-test=true")
}
2022-01-01 18:27:52 +01:00
}
sourceSets {
main {
java.srcDir(file("src/main/java"))
java.srcDir(file("src/autogenerated/java"))
2022-01-01 18:27:52 +01:00
}
}
dependencies {
// Core dependencies
api(libs.slf4j)
api(libs.jetbrainsAnnotations)
api(libs.bundles.adventure)
api(libs.hydrazine)
api(libs.bundles.kotlin)
api(libs.bundles.hephaistos)
implementation(libs.minestomData)
2023-09-08 13:30:39 +02:00
// Libraries required for the terminal
implementation(libs.bundles.terminal)
// Performance/data structures
implementation(libs.caffeine)
api(libs.fastutil)
implementation(libs.bundles.flare)
api(libs.gson)
implementation(libs.jcTools)
// Testing
testImplementation(libs.bundles.junit)
testImplementation(project(":testing"))
2022-01-01 18:27:52 +01:00
}
tasks {
withType<Javadoc> {
(options as? StandardJavadocDocletOptions)?.apply {
encoding = "UTF-8"
// Custom options
addBooleanOption("html5", true)
addStringOption("-release", "17")
// Links to external javadocs
links("https://docs.oracle.com/en/java/javase/17/docs/api/")
links("https://jd.adventure.kyori.net/api/${libs.versions.adventure.get()}/")
}
}
blossom {
val gitFile = "src/main/java/net/minestom/server/Git.java"
val gitCommit = System.getenv("GIT_COMMIT")
val gitBranch = System.getenv("GIT_BRANCH")
val group = System.getenv("GROUP")
val artifact = System.getenv("ARTIFACT")
replaceToken("\"&COMMIT\"", if (gitCommit == null) "null" else "\"${gitCommit}\"", gitFile)
replaceToken("\"&BRANCH\"", if (gitBranch == null) "null" else "\"${gitBranch}\"", gitFile)
replaceToken("\"&GROUP\"", if (group == null) "null" else "\"${group}\"", gitFile)
replaceToken("\"&ARTIFACT\"", if (artifact == null) "null" else "\"${artifact}\"", gitFile)
}
nexusPublishing{
useStaging.set(true)
this.packageGroup.set("net.minestom")
2022-01-01 18:27:52 +01:00
repositories.sonatype {
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
2022-01-01 18:27:52 +01:00
if (System.getenv("SONATYPE_USERNAME") != null) {
username.set(System.getenv("SONATYPE_USERNAME"))
password.set(System.getenv("SONATYPE_PASSWORD"))
}
}
}
2022-01-01 18:27:52 +01:00
publishing.publications.create<MavenPublication>("maven") {
groupId = "net.minestom"
artifactId = "minestom"
version = project.version.toString()
from(project.components["java"])
pom {
name.set("minestom")
description.set(project.description)
url.set("https://github.com/minestom/minestom")
licenses {
license {
name.set("Apache 2.0")
url.set("https://github.com/minestom/minestom/blob/main/LICENSE")
}
}
developers {
developer {
id.set("TheMode")
}
developer {
id.set("mworzala")
name.set("Matt Worzala")
email.set("matt@hollowcube.dev")
}
}
issueManagement {
system.set("GitHub")
url.set("https://github.com/minestom/minestom/issues")
}
scm {
connection.set("scm:git:git://github.com/minestom/minestom.git")
developerConnection.set("scm:git:git@github.com:minestom/minestom.git")
url.set("https://github.com/minestom/minestom")
tag.set("HEAD")
}
ciManagement {
system.set("Github Actions")
url.set("https://github.com/minestom/minestom/actions")
}
}
}
2022-01-01 18:27:52 +01:00
signing {
isRequired = System.getenv("CI") != null
2022-01-01 18:27:52 +01:00
val privateKey = System.getenv("GPG_PRIVATE_KEY")
val keyPassphrase = System.getenv()["GPG_PASSPHRASE"]
useInMemoryPgpKeys(privateKey, keyPassphrase)
2022-01-01 18:27:52 +01:00
sign(publishing.publications)
}
2022-01-01 18:27:52 +01:00
}