//compileOnly(group = "com.openosrs.externals", name = "iutils", version = "4.0.0+") uncomment this is you want to use this in a project that doesn't also hold iUtils
compileOnly(project(":iutils"))
}
tasks {
jar {
manifest {
attributes(mapOf(
"Plugin-Version" to project.version,
"Plugin-Id" to nameToId(project.extra["PluginName"] as String),
"Plugin-Provider" to project.extra["PluginProvider"],
"Plugin-Dependencies" to
arrayOf(
nameToId("iUtils")
).joinToString(),
"Plugin-Description" to project.extra["PluginDescription"],
"Plugin-License" to project.extra["PluginLicense"]