mirror of
https://github.com/runelite/plugin-hub.git
synced 2025-12-23 22:48:49 -05:00
137 lines
4.4 KiB
Groovy
137 lines
4.4 KiB
Groovy
/*
|
|
* Copyright (c) 2019 Abex
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
import com.google.common.hash.Hashing
|
|
import com.google.common.io.Files
|
|
import com.google.gson.Gson
|
|
|
|
initscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "com.github.jengelman.gradle.plugins:shadow:5.2.0"
|
|
classpath "com.google.code.gson:gson:2.8.5"
|
|
classpath "com.google.guava:guava:23.2-jre"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: "java";
|
|
apply plugin: com.github.jengelman.gradle.plugins.shadow.ShadowPlugin
|
|
|
|
tasks.withType(AbstractArchiveTask) {
|
|
preserveFileTimestamps = false
|
|
reproducibleFileOrder = true
|
|
}
|
|
|
|
task rlpluginPackageJar(type: ShadowJar) {
|
|
destinationDir = new File(System.properties["rlpluginOutputDirectory"])
|
|
archiveName = "plugin.jar"
|
|
configurations = [project.configurations.runtimeClasspath]
|
|
from sourceSets.main.output
|
|
}
|
|
|
|
task rlpluginEmitManifest {
|
|
// this doesn't have up-to-date stuff because we always do --no-build-cache
|
|
|
|
doLast {
|
|
def manifest = new ExternalPluginManifest()
|
|
manifest.internalName = System.properties["rlpluginPluginID"]
|
|
manifest.commit = System.properties["rlpluginCommit"]
|
|
|
|
def pluginJar = new File(System.properties["rlpluginOutputDirectory"], "plugin.jar");
|
|
manifest.hash = Files.asByteSource(pluginJar)
|
|
.hash(Hashing.sha256())
|
|
.toString()
|
|
manifest.size = pluginJar.length()
|
|
|
|
def props = new Properties()
|
|
new FileInputStream(file("runelite-plugin.properties")).withCloseable { is ->
|
|
props.load(is)
|
|
}
|
|
manifest.plugins = props["plugins"].split(/[,:;]/)*.trim()
|
|
|
|
manifest.displayName = props["displayName"]
|
|
if (!manifest.displayName) {
|
|
throw new RuntimeException("Plugin must have a display name")
|
|
}
|
|
manifest.author = props["author"]
|
|
if (!manifest.author) {
|
|
throw new RuntimeException("Plugin must have an author")
|
|
}
|
|
if (props["support"]) {
|
|
manifest.support = new URL(props["support"])
|
|
}
|
|
manifest.description = props["description"] ?: null
|
|
manifest.tags = props["tags"]?.split() ?: null
|
|
|
|
manifest.version = project.version
|
|
if (!(manifest.version ==~ /^[a-zA-Z0-9.-]+$/)) {
|
|
throw new RuntimeException("Plugin version \"${manifest.version}\" is invalid");
|
|
}
|
|
|
|
manifest.hasIcon = file("icon.png").exists();
|
|
|
|
new File(System.properties["rlpluginOutputDirectory"], "plugin.manifest")
|
|
.text = new Gson().toJson(manifest);
|
|
}
|
|
}
|
|
|
|
rlpluginEmitManifest.dependsOn rlpluginPackageJar
|
|
|
|
task configured {
|
|
def runeLiteDeps = [
|
|
"runelite-client",
|
|
"runelite-api",
|
|
"http-api",
|
|
]
|
|
def version = System.properties["rlpluginRuneLiteVersion"]
|
|
configurations.all {
|
|
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
|
|
if (details.requested.group == "net.runelite" && details.requested.name in runeLiteDeps) {
|
|
details.useVersion version
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class ExternalPluginManifest {
|
|
String internalName;
|
|
String commit;
|
|
String hash;
|
|
int size;
|
|
String[] plugins;
|
|
|
|
String displayName;
|
|
String version;
|
|
String author;
|
|
String description;
|
|
String[] tags;
|
|
URL support;
|
|
boolean hasIcon;
|
|
} |