mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-01 15:36:45 +00:00
# Conflicts: # build.gradle # core/src/main/java/com/volmit/iris/core/commands/CommandDeveloper.java # core/src/main/java/com/volmit/iris/core/pregenerator/methods/AsyncPregenMethod.java # core/src/main/java/com/volmit/iris/core/service/WandSVC.java # core/src/main/java/com/volmit/iris/core/tools/IrisConverter.java # core/src/main/java/com/volmit/iris/engine/framework/Engine.java
235 lines
9.0 KiB
Groovy
235 lines
9.0 KiB
Groovy
/*
|
|
* Iris is a World Generator for Minecraft Bukkit Servers
|
|
* Copyright (c) 2024 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 'https://jitpack.io'}
|
|
}
|
|
dependencies {
|
|
classpath 'com.github.VolmitSoftware:NMSTools:1.0.1'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'java'
|
|
id 'java-library'
|
|
id "io.github.goooler.shadow" version "8.1.7"
|
|
id "de.undercouch.download" version "5.0.1"
|
|
}
|
|
|
|
version '4.0-1.19.2-1.21.1'
|
|
|
|
// 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('Pixel', 'D://Iris Dimension Engine/1.20.4 - Development/plugins')
|
|
// ========================== UNIX ==============================
|
|
registerCustomOutputTaskUnix('CyberpwnLT', '/Users/danielmills/development/server/plugins')
|
|
registerCustomOutputTaskUnix('PsychoLT', '/Users/brianfopiano/Developer/RemoteGit/Server/plugins')
|
|
registerCustomOutputTaskUnix('PixelMac', '/Users/test/Desktop/mcserver/plugins')
|
|
registerCustomOutputTaskUnix('CrazyDev22LT', '/home/julian/Desktop/server/plugins')
|
|
// ==============================================================
|
|
|
|
def NMS_BINDINGS = Map.of(
|
|
"v1_21_R1", "1.21-R0.1-SNAPSHOT",
|
|
"v1_20_R4", "1.20.6-R0.1-SNAPSHOT",
|
|
"v1_20_R3", "1.20.4-R0.1-SNAPSHOT",
|
|
"v1_20_R2", "1.20.2-R0.1-SNAPSHOT",
|
|
"v1_20_R1", "1.20.1-R0.1-SNAPSHOT",
|
|
"v1_19_R3", "1.19.4-R0.1-SNAPSHOT",
|
|
"v1_19_R2", "1.19.3-R0.1-SNAPSHOT",
|
|
"v1_19_R1", "1.19.2-R0.1-SNAPSHOT"
|
|
)
|
|
def JVM_VERSION = Map.of(
|
|
"v1_21_R1", 21,
|
|
"v1_20_R4", 21,
|
|
)
|
|
def entryPoint = 'com.volmit.iris.server.EntryPoint'
|
|
NMS_BINDINGS.each { nms ->
|
|
project(":nms:${nms.key}") {
|
|
apply plugin: 'java'
|
|
apply plugin: 'com.volmit.nmstools'
|
|
|
|
nmsTools {
|
|
it.jvm = JVM_VERSION.getOrDefault(nms.key, 17)
|
|
it.version = nms.value
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
}
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
NMS_BINDINGS.each {
|
|
dependsOn(":nms:${it.key}:remap")
|
|
from("${project(":nms:${it.key}").layout.buildDirectory.asFile.get()}/libs/${it.key}-mapped.jar")
|
|
}
|
|
//dependsOn(':com.volmit.gui:build')
|
|
|
|
//minimize()
|
|
append("plugin.yml")
|
|
relocate 'com.dfsek.paralithic', 'com.volmit.iris.util.paralithic'
|
|
relocate 'io.papermc.lib', 'com.volmit.iris.util.paper'
|
|
relocate 'net.kyori', 'com.volmit.iris.util.kyori'
|
|
archiveFileName.set("Iris-${project.version}.jar")
|
|
|
|
manifest {
|
|
attributes 'Main-Class': entryPoint
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
}
|
|
|
|
configurations.configureEach {
|
|
resolutionStrategy.cacheChangingModulesFor 60, 'minutes'
|
|
resolutionStrategy.cacheDynamicVersionsFor 60, 'minutes'
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: 'java'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://repo.papermc.io/repository/maven-public/"}
|
|
maven { url "https://repo.codemc.org/repository/maven-public" }
|
|
maven { url "https://mvn.lumine.io/repository/maven-public/" }
|
|
maven { url "https://jitpack.io"}
|
|
|
|
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots" }
|
|
maven { url "https://mvn.lumine.io/repository/maven/" }
|
|
maven { url "https://repo.triumphteam.dev/snapshots" }
|
|
maven { url "https://repo.mineinabyss.com/releases" }
|
|
maven { url 'https://hub.jeff-media.com/nexus/repository/jeff-media-public/' }
|
|
maven { url "https://repo.oraxen.com/releases" }
|
|
}
|
|
|
|
dependencies {
|
|
// Provided or Classpath
|
|
compileOnly 'org.projectlombok:lombok:1.18.34'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.34'
|
|
|
|
// Shaded
|
|
implementation 'com.dfsek:Paralithic:0.4.0'
|
|
implementation 'io.papermc:paperlib:1.0.5'
|
|
implementation "net.kyori:adventure-text-minimessage:4.17.0"
|
|
implementation 'net.kyori:adventure-platform-bukkit:4.3.4'
|
|
implementation 'net.kyori:adventure-api:4.17.0'
|
|
//implementation 'org.bytedeco:javacpp:1.5.10'
|
|
//implementation 'org.bytedeco:cuda-platform:12.3-8.9-1.5.10'
|
|
//implementation "org.deeplearning4j:deeplearning4j-core:1.0.0-M2.1"
|
|
compileOnly 'io.lumine:Mythic-Dist:5.2.1'
|
|
|
|
// Dynamically Loaded
|
|
compileOnly 'io.timeandspace:smoothie-map:2.0.2'
|
|
compileOnly 'it.unimi.dsi:fastutil:8.5.8'
|
|
compileOnly 'com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.4.2'
|
|
compileOnly 'org.zeroturnaround:zt-zip:1.14'
|
|
compileOnly 'com.google.code.gson:gson:2.10.1'
|
|
compileOnly 'org.ow2.asm:asm:9.2'
|
|
compileOnly 'com.google.guava:guava:33.0.0-jre'
|
|
compileOnly 'bsf:bsf:2.4.0'
|
|
compileOnly 'rhino:js:1.7R2'
|
|
compileOnly 'com.github.ben-manes.caffeine:caffeine:3.0.6'
|
|
compileOnly 'org.apache.commons:commons-lang3:3.12.0'
|
|
compileOnly 'net.bytebuddy:byte-buddy:1.14.14'
|
|
compileOnly 'net.bytebuddy:byte-buddy-agent:1.12.8'
|
|
compileOnly 'org.bytedeco:javacpp:1.5.10'
|
|
compileOnly 'org.bytedeco:cuda-platform:12.3-8.9-1.5.10'
|
|
compileOnly 'io.netty:netty-all:4.1.112.Final'
|
|
}
|
|
|
|
/**
|
|
* We need parameter meta for the decree command system
|
|
*/
|
|
compileJava {
|
|
options.compilerArgs << '-parameters'
|
|
options.encoding = "UTF-8"
|
|
}
|
|
}
|
|
|
|
if (JavaVersion.current().toString() != "17") {
|
|
System.err.println()
|
|
System.err.println("=========================================================================================================")
|
|
System.err.println("You must run gradle on Java 17. You are using " + JavaVersion.current())
|
|
System.err.println()
|
|
System.err.println("=== For IDEs ===")
|
|
System.err.println("1. Configure the project for Java 17")
|
|
System.err.println("2. Configure the bundled gradle to use Java 17 in settings")
|
|
System.err.println()
|
|
System.err.println("=== For Command Line (gradlew) ===")
|
|
System.err.println("1. Install JDK 17 from https://www.oracle.com/java/technologies/javase/jdk17-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-17.0.1")
|
|
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);
|
|
}
|
|
|
|
task iris(type: Copy) {
|
|
group "iris"
|
|
from new File(layout.buildDirectory.asFile.get(), "libs/Iris-${version}.jar")
|
|
into layout.buildDirectory.asFile.get()
|
|
dependsOn(build)
|
|
}
|
|
|
|
def registerCustomOutputTask(name, path) {
|
|
if (!System.properties['os.name'].toLowerCase().contains('windows')) {
|
|
return;
|
|
}
|
|
|
|
tasks.register('build' + name, Copy) {
|
|
group('development')
|
|
outputs.upToDateWhen { false }
|
|
dependsOn(iris)
|
|
from(new File(buildDir, "Iris-" + version + ".jar"))
|
|
into(file(path))
|
|
rename { String fileName ->
|
|
fileName.replace("Iris-" + version + ".jar", "Iris.jar")
|
|
}
|
|
}
|
|
}
|
|
|
|
def registerCustomOutputTaskUnix(name, path) {
|
|
if (System.properties['os.name'].toLowerCase().contains('windows')) {
|
|
return;
|
|
}
|
|
|
|
tasks.register('build' + name, Copy) {
|
|
group('development')
|
|
outputs.upToDateWhen { false }
|
|
dependsOn(iris)
|
|
from(new File(buildDir, "Iris-" + version + ".jar"))
|
|
into(file(path))
|
|
rename { String fileName ->
|
|
fileName.replace("Iris-" + version + ".jar", "Iris.jar")
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.build.dependsOn(shadowJar)
|