Open-source multiplayer game server compatible with the RuneScape client
https://www.openrs2.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
718 B
31 lines
718 B
plugins {
|
|
`maven-publish`
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.kotlin.coroutines.core)
|
|
|
|
implementation(libs.guava)
|
|
|
|
testImplementation(libs.h2)
|
|
testImplementation(libs.kotlin.coroutines.test)
|
|
}
|
|
|
|
publishing {
|
|
publications.create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
|
|
pom {
|
|
packaging = "jar"
|
|
name.set("OpenRS2 Database")
|
|
description.set(
|
|
"""
|
|
A thin layer on top of the JDBC API that enforces the use of
|
|
transactions, automatically retrying them on deadlock, and
|
|
provides coroutine integration.
|
|
""".trimIndent()
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|