mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-03 06:16:19 +00:00
269 lines
10 KiB
Groovy
269 lines
10 KiB
Groovy
import de.undercouch.gradle.tasks.download.Download
|
|
import org.gradle.api.plugins.JavaPlugin
|
|
import org.gradle.api.tasks.Copy
|
|
import org.gradle.api.tasks.compile.JavaCompile
|
|
import org.gradle.jvm.tasks.Jar
|
|
import org.gradle.jvm.toolchain.JavaLanguageVersion
|
|
|
|
/*
|
|
* Iris is a World Generator for Minecraft Bukkit Servers
|
|
* Copyright (c) 2021 Arcane Arts (Volmit Software)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
url = uri('https://jitpack.io')
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath('com.github.VolmitSoftware:NMSTools:c88961416f')
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'java'
|
|
id 'java-library'
|
|
alias(libs.plugins.download)
|
|
}
|
|
|
|
group = 'art.arcane'
|
|
version = '4.0.0-1.21.11'
|
|
String volmLibCoordinate = providers.gradleProperty('volmLibCoordinate')
|
|
.orElse('com.github.VolmitSoftware:VolmLib:master-SNAPSHOT')
|
|
.get()
|
|
|
|
apply plugin: ApiGenerator
|
|
|
|
// ADD YOURSELF AS A NEW LINE IF YOU WANT YOUR OWN BUILD TASK GENERATED
|
|
// ======================== WINDOWS =============================
|
|
registerCustomOutputTask('Cyberpwn', 'C://Users/cyberpwn/Documents/development/server/plugins')
|
|
registerCustomOutputTask('Psycho', 'C://Dan/MinecraftDevelopment/Server/plugins')
|
|
registerCustomOutputTask('ArcaneArts', 'C://Users/arcane/Documents/development/server/plugins')
|
|
registerCustomOutputTask('Coco', 'D://mcsm/plugins')
|
|
registerCustomOutputTask('Strange', 'D://Servers/1.17 Test Server/plugins')
|
|
registerCustomOutputTask('Vatuu', 'D://Minecraft/Servers/1.19.4/plugins')
|
|
registerCustomOutputTask('CrazyDev22', 'C://Users/Julian/Desktop/server/plugins')
|
|
registerCustomOutputTask('PixelFury', 'C://Users/repix/workplace/Iris/1.21.3 - Development-Public-v3/plugins')
|
|
registerCustomOutputTask('PixelFuryDev', 'C://Users/repix/workplace/Iris/1.21 - Development-v3/plugins')
|
|
// ========================== UNIX ==============================
|
|
registerCustomOutputTaskUnix('CyberpwnLT', '/Users/danielmills/development/server/plugins')
|
|
registerCustomOutputTaskUnix('PsychoLT', '/Users/brianfopiano/Developer/RemoteGit/[Minecraft Server]/consumers/plugin-consumers/dropins/plugins')
|
|
registerCustomOutputTaskUnix('PixelMac', '/Users/test/Desktop/mcserver/plugins')
|
|
registerCustomOutputTaskUnix('CrazyDev22LT', '/home/julian/Desktop/server/plugins')
|
|
// ==============================================================
|
|
|
|
def nmsBindings = [
|
|
v1_21_R7: '1.21.11-R0.1-SNAPSHOT',
|
|
]
|
|
Class nmsTypeClass = Class.forName('NMSBinding$Type')
|
|
nmsBindings.each { key, value ->
|
|
project(":nms:${key}") {
|
|
apply plugin: JavaPlugin
|
|
|
|
def nmsConfig = new Config()
|
|
nmsConfig.jvm = 21
|
|
nmsConfig.version = value
|
|
nmsConfig.type = Enum.valueOf(nmsTypeClass, 'DIRECT')
|
|
extensions.extraProperties.set('nms', nmsConfig)
|
|
plugins.apply(NMSBinding)
|
|
|
|
dependencies {
|
|
compileOnly(project(':core'))
|
|
compileOnly(volmLibCoordinate) {
|
|
changing = true
|
|
transitive = false
|
|
}
|
|
compileOnly(rootProject.libs.annotations)
|
|
compileOnly(rootProject.libs.byteBuddy.core)
|
|
}
|
|
}
|
|
}
|
|
|
|
def included = configurations.create('included')
|
|
def jarJar = configurations.create('jarJar')
|
|
dependencies {
|
|
nmsBindings.keySet().each { key ->
|
|
add('included', project(path: ":nms:${key}", configuration: 'reobf'))
|
|
}
|
|
add('included', project(path: ':core', configuration: 'shadow'))
|
|
add('jarJar', project(':core:agent'))
|
|
}
|
|
|
|
tasks.named('jar', Jar).configure {
|
|
inputs.files(included)
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
from(jarJar, provider { included.resolve().collect { zipTree(it) } })
|
|
archiveFileName.set("Iris-${project.version}.jar")
|
|
}
|
|
|
|
tasks.register('iris', Copy) {
|
|
group = 'iris'
|
|
dependsOn('jar')
|
|
from(layout.buildDirectory.file("libs/Iris-${project.version}.jar"))
|
|
into(layout.buildDirectory)
|
|
}
|
|
|
|
tasks.register('irisDev', Copy) {
|
|
group = 'iris'
|
|
from(project(':core').layout.buildDirectory.files('libs/core-javadoc.jar', 'libs/core-sources.jar'))
|
|
rename { String fileName -> fileName.replace('core', "Iris-${project.version}") }
|
|
into(layout.buildDirectory)
|
|
dependsOn(':core:sourcesJar')
|
|
dependsOn(':core:javadocJar')
|
|
}
|
|
|
|
def cli = file('sentry-cli.exe')
|
|
tasks.register('downloadCli', Download) {
|
|
group = 'io.sentry'
|
|
src("https://release-registry.services.sentry.io/apps/sentry-cli/latest?response=download&arch=x86_64&platform=${System.getProperty('os.name')}&package=sentry-cli")
|
|
dest(cli)
|
|
|
|
doLast {
|
|
cli.setExecutable(true)
|
|
}
|
|
}
|
|
|
|
tasks.register('release') {
|
|
group = 'io.sentry'
|
|
dependsOn('downloadCli')
|
|
doLast {
|
|
String url = 'http://sentry.volmit.com:8080'
|
|
def authToken = project.findProperty('sentry.auth.token') ?: System.getenv('SENTRY_AUTH_TOKEN')
|
|
String org = 'sentry'
|
|
String projectName = 'iris'
|
|
runCommand(cli, '--url', url, '--auth-token', authToken, 'releases', 'new', '-o', org, '-p', projectName, version)
|
|
runCommand(cli, '--url', url, '--auth-token', authToken, 'releases', 'set-commits', '-o', org, '-p', projectName, version, '--auto', '--ignore-missing')
|
|
//exec(cli, "--url", url, "--auth-token", authToken, "releases", "finalize", "-o", org, "-p", projectName, version)
|
|
cli.delete()
|
|
}
|
|
}
|
|
|
|
void runCommand(Object... command) {
|
|
Process process = new ProcessBuilder(command.collect { it.toString() }).start()
|
|
process.inputStream.readLines().each { println(it) }
|
|
process.errorStream.readLines().each { println(it) }
|
|
process.waitFor()
|
|
}
|
|
|
|
configurations.configureEach {
|
|
resolutionStrategy.cacheChangingModulesFor(0, 'seconds')
|
|
resolutionStrategy.cacheDynamicVersionsFor(0, 'seconds')
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: 'java'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri('https://repo.papermc.io/repository/maven-public/') }
|
|
maven { url = uri('https://repo.codemc.org/repository/maven-public/') }
|
|
|
|
maven { url = uri('https://jitpack.io') } // EcoItems, score
|
|
maven { url = uri('https://repo.nexomc.com/releases/') } // nexo
|
|
maven { url = uri('https://maven.devs.beer/') } // itemsadder
|
|
maven { url = uri('https://repo.extendedclip.com/releases/') } // placeholderapi
|
|
maven { url = uri('https://mvn.lumine.io/repository/maven-public/') } // mythic
|
|
maven { url = uri('https://nexus.phoenixdevt.fr/repository/maven-public/') } //MMOItems
|
|
maven { url = uri('https://repo.onarandombox.com/content/groups/public/') } //Multiverse Core
|
|
}
|
|
|
|
dependencies {
|
|
// Provided or Classpath
|
|
compileOnly(rootProject.libs.lombok)
|
|
annotationProcessor(rootProject.libs.lombok)
|
|
}
|
|
|
|
/**
|
|
* We need parameter meta for the decree command system
|
|
*/
|
|
tasks.named('compileJava', JavaCompile).configure {
|
|
options.compilerArgs.add('-parameters')
|
|
options.encoding = 'UTF-8'
|
|
options.debugOptions.debugLevel = 'none'
|
|
}
|
|
|
|
tasks.named('javadoc').configure {
|
|
options.encoding = 'UTF-8'
|
|
options.quiet()
|
|
//options.addStringOption("Xdoclint:none") // TODO: Re-enable this
|
|
}
|
|
|
|
tasks.register('sourcesJar', Jar) {
|
|
archiveClassifier.set('sources')
|
|
from(sourceSets.main.allSource)
|
|
}
|
|
|
|
tasks.register('javadocJar', Jar) {
|
|
archiveClassifier.set('javadoc')
|
|
from(tasks.named('javadoc').map { it.destinationDir })
|
|
}
|
|
}
|
|
|
|
if (!JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_21)) {
|
|
System.err.println()
|
|
System.err.println('=========================================================================================================')
|
|
System.err.println('You must run gradle on Java 21 or newer. You are using ' + JavaVersion.current())
|
|
System.err.println()
|
|
System.err.println('=== For IDEs ===')
|
|
System.err.println('1. Configure the project for Java 21 toolchain')
|
|
System.err.println('2. Configure the bundled gradle to use Java 21+ in settings')
|
|
System.err.println()
|
|
System.err.println('=== For Command Line (gradlew) ===')
|
|
System.err.println('1. Install JDK 21 from https://www.oracle.com/java/technologies/javase/jdk21-archive-downloads.html')
|
|
System.err.println('2. Set JAVA_HOME environment variable to the new jdk installation folder such as C:\\Program Files\\Java\\jdk-21.0.4')
|
|
System.err.println('3. Open a new command prompt window to get the new environment variables if need be.')
|
|
System.err.println('=========================================================================================================')
|
|
System.err.println()
|
|
System.exit(69)
|
|
}
|
|
|
|
void registerCustomOutputTask(String name, String path) {
|
|
if (!System.getProperty('os.name').toLowerCase().contains('windows')) {
|
|
return
|
|
}
|
|
|
|
tasks.register("build${name}", Copy) {
|
|
group = 'development'
|
|
outputs.upToDateWhen { false }
|
|
dependsOn('iris')
|
|
from(layout.buildDirectory.file("Iris-${project.version}.jar"))
|
|
into(file(path))
|
|
rename { String ignored -> 'Iris.jar' }
|
|
}
|
|
}
|
|
|
|
void registerCustomOutputTaskUnix(String name, String path) {
|
|
if (System.getProperty('os.name').toLowerCase().contains('windows')) {
|
|
return
|
|
}
|
|
|
|
tasks.register("build${name}", Copy) {
|
|
group = 'development'
|
|
outputs.upToDateWhen { false }
|
|
dependsOn('iris')
|
|
from(layout.buildDirectory.file("Iris-${project.version}.jar"))
|
|
into(file(path))
|
|
rename { String ignored -> 'Iris.jar' }
|
|
}
|
|
}
|