mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-17 17:54:05 +00:00
77 lines
2.7 KiB
Groovy
77 lines
2.7 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'io.freefair.lombok' version '5.2.1'
|
|
id "com.github.johnrengelman.shadow" version "7.0.0"
|
|
}
|
|
|
|
group 'com.volmit.iris'
|
|
version '1.4.11'
|
|
def apiVersion = '1.17'
|
|
def name = 'Iris'
|
|
def main = 'com.volmit.iris.Iris'
|
|
|
|
// ADD YOURSELF AS A NEW LINE IF YOU WANT YOUR OWN BUILD TASK GENERATED
|
|
// ==============================================================
|
|
registerCustomOutputTask('Cyberpwn', 'C://Users/cyberpwn/Documents/development/server/plugins');
|
|
registerCustomOutputTask('Psycho', 'D://Dan/MinecraftDevelopment/server/plugins');
|
|
registerCustomOutputTask('ArcaneArts', 'C://Users/arcane/Documents/development/server/plugins');
|
|
// ==============================================================
|
|
|
|
def registerCustomOutputTask(name, path) {
|
|
tasks.register('build' + name, Copy) {
|
|
group('development')
|
|
outputs.upToDateWhen{false}
|
|
dependsOn ':shadowJar'
|
|
from(file('build/libs/Iris-' + version + '-all.jar'))
|
|
into(file(path))
|
|
rename { String fileName ->
|
|
fileName.replace('Iris-' + version + '-all.jar', "Iris.jar")
|
|
}
|
|
}
|
|
}
|
|
|
|
file(jar.archiveFile.get().getAsFile().getParentFile().getParentFile().getParentFile().getAbsolutePath() + '/build/resources/main/plugin.yml').delete()
|
|
|
|
processResources {
|
|
filesMatching('**/plugin.yml') {
|
|
expand(
|
|
'name': name.toString(),
|
|
'version': version.toString(),
|
|
'main': main.toString(),
|
|
'apiversion': apiVersion.toString()
|
|
)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
allowInsecureProtocol true
|
|
url "http://archive.arcane.art/repository/arcane"
|
|
}
|
|
mavenLocal()
|
|
}
|
|
|
|
shadowJar
|
|
{
|
|
minimize()
|
|
dependencies {
|
|
include(dependency('org.zeroturnaround:zt-zip:1.14'))
|
|
include(dependency('io.papermc:paperlib:1.0.5'))
|
|
include(dependency('com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2'))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.projectlombok:lombok:1.18.20'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.20'
|
|
implementation 'org.zeroturnaround:zt-zip:1.14'
|
|
implementation 'io.papermc:paperlib:1.0.5'
|
|
implementation 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2'
|
|
implementation 'org.spigotmc:spigot-api:1.17-R0.1-SNAPSHOT'
|
|
implementation 'org.bukkit.craftbukkit:1.17:1.17'
|
|
implementation 'org.bukkit.craftbukkit:1.17.1:1.17.1'
|
|
implementation 'com.bergerkiller.bukkit:BKCommonLib:1.16.4-v2'
|
|
implementation 'com.sk89q.worldedit:worldedit-bukkit:7.2.0-SNAPSHOT'
|
|
implementation 'io.lumine.xikage:MythicMobs:4.9.1'
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
} |