forked from openrs2/openrs2
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.
54 lines
1.4 KiB
54 lines
1.4 KiB
plugins {
|
|
`maven-publish`
|
|
application
|
|
kotlin("jvm")
|
|
}
|
|
|
|
application {
|
|
mainClass.set("org.openrs2.archive.ArchiveCommandKt")
|
|
}
|
|
|
|
dependencies {
|
|
api(libs.clikt)
|
|
|
|
implementation(projects.buffer)
|
|
implementation(projects.cache)
|
|
implementation(projects.cli)
|
|
implementation(projects.db)
|
|
implementation(projects.http)
|
|
implementation(projects.inject)
|
|
implementation(projects.json)
|
|
implementation(projects.net)
|
|
implementation(projects.protocol)
|
|
implementation(projects.util)
|
|
implementation(projects.yaml)
|
|
implementation(libs.bootstrap)
|
|
implementation(libs.bundles.ktor)
|
|
implementation(libs.bundles.thymeleaf)
|
|
implementation(libs.byteUnits)
|
|
implementation(libs.flyway)
|
|
implementation(libs.guava)
|
|
implementation(libs.hikaricp)
|
|
implementation(libs.jdom)
|
|
implementation(libs.jquery)
|
|
implementation(libs.jsoup)
|
|
implementation(libs.kotlin.coroutines.core)
|
|
implementation(libs.postgres)
|
|
}
|
|
|
|
publishing {
|
|
publications.create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
|
|
pom {
|
|
packaging = "jar"
|
|
name.set("OpenRS2 Archive")
|
|
description.set(
|
|
"""
|
|
Service for archiving clients, caches and XTEA keys in an
|
|
efficient deduplicated format.
|
|
""".trimIndent()
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|