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.
 
 
 
 
openrs2/xtea-plugin/build.gradle.kts

43 lines
1.1 KiB

plugins {
`java-library`
`maven-publish`
}
dependencies {
compileOnly(libs.runelite.client)
testImplementation(libs.runelite.client)
}
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
pom {
packaging = "jar"
name.set("OpenRS2 XTEA Plugin")
description.set(
"""
A RuneLite/OpenOSRS plugin that collects XTEA keys and submits
them to the OpenRS2 Archive.
""".trimIndent()
)
}
}
}
tasks.jar {
manifest {
attributes["Plugin-Description"] = "Collects XTEA keys and submits them to the OpenRS2 Archive"
attributes["Plugin-Id"] = "OpenRS2 XTEA"
attributes["Plugin-License"] = "ISC"
attributes["Plugin-Provider"] = "OpenRS2"
attributes["Plugin-Version"] = project.version
}
}
tasks.register<JavaExec>("run") {
classpath = project.sourceSets.test.get().runtimeClasspath
mainClass.set("org.openrs2.xtea.XteaPluginTest")
jvmArgs = listOf("-ea")
}