Minestom/build.gradle

187 lines
5.9 KiB
Groovy
Raw Normal View History

2020-08-04 23:01:35 +02:00
import org.gradle.internal.os.OperatingSystem
2019-08-03 15:25:24 +02:00
plugins {
id 'java-library'
id 'maven-publish'
2021-10-22 01:55:55 +02:00
id 'org.jetbrains.kotlin.jvm' version '1.5.31'
//id 'checkstyle'
2019-08-03 15:25:24 +02:00
}
2020-11-16 03:10:51 +01:00
group 'net.minestom.server'
version '1.0'
2021-10-22 01:55:55 +02:00
sourceCompatibility = 17
2020-08-04 23:01:35 +02:00
project.ext.lwjglVersion = "3.2.3"
switch (OperatingSystem.current()) {
case OperatingSystem.LINUX:
def osArch = System.getProperty("os.arch")
project.ext.lwjglNatives = osArch.startsWith("arm") || osArch.startsWith("aarch64")
? "natives-linux-${osArch.contains("64") || osArch.startsWith("armv8") ? "arm64" : "arm32"}"
: "natives-linux"
break
case OperatingSystem.MAC_OS:
project.ext.lwjglNatives = "natives-macos"
break
case OperatingSystem.WINDOWS:
project.ext.lwjglNatives = System.getProperty("os.arch").contains("64") ? "natives-windows" : "natives-windows-x86"
break
}
allprojects {
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
2020-10-13 10:51:48 +02:00
javadoc {
options {
addBooleanOption('html5', true)
2021-03-30 14:28:44 +02:00
links "https://jd.adventure.kyori.net/api/$adventureVersion/"
links "https://docs.oracle.com/en/java/javase/11/docs/api/"
2020-10-13 10:51:48 +02:00
}
2021-03-30 15:02:35 +02:00
// see https://stackoverflow.com/a/56641766
doLast {
// Append the fix to the file
2021-05-18 21:34:25 +02:00
def searchScript = new File(destinationDir, '/search.js')
2021-03-30 15:02:35 +02:00
searchScript.append '\n\n' +
'getURLPrefix = function(ui) {\n' +
' return \'\';\n' +
'};\n'
2020-10-13 10:51:48 +02:00
}
}
2020-11-20 01:30:01 +01:00
//checkstyle {
// toolVersion "8.42"
// configFile file("${projectDir}/minestom_checks.xml")
//}
}
sourceSets {
main {
java {
srcDir 'src/main/java'
srcDir 'src/autogenerated/java'
}
}
lwjgl {
java {
srcDir 'src/lwjgl/java'
}
compileClasspath += sourceSets.main.runtimeClasspath
runtimeClasspath += sourceSets.main.runtimeClasspath
}
}
java {
// Minestom uses LWJGL libs as optional dependency if interfacing with a GPU is asked
registerFeature("lwjgl") {
usingSourceSet(sourceSets.lwjgl)
withJavadocJar()
withSourcesJar()
}
2020-09-20 15:04:07 +02:00
withJavadocJar()
withSourcesJar()
}
2020-07-31 22:31:58 +02:00
test {
useJUnitPlatform()
2020-07-31 22:31:58 +02:00
}
2021-05-18 21:34:25 +02:00
tasks.withType(Zip).configureEach {
duplicatesStrategy DuplicatesStrategy.EXCLUDE
}
2019-08-03 15:25:24 +02:00
dependencies {
2020-07-13 19:34:32 +02:00
// Junit Testing Framework
2021-12-28 18:21:47 +01:00
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.8.2')
2019-09-14 18:00:18 +02:00
// Only here to ensure J9 module support for extensions and our classloaders
2021-12-28 18:21:47 +01:00
testCompileOnly 'org.mockito:mockito-core:4.2.0'
2019-09-14 18:00:18 +02:00
// https://mvnrepository.com/artifact/it.unimi.dsi/fastutil
api 'it.unimi.dsi:fastutil:8.5.6'
implementation group: 'space.vectrix.flare', name: 'flare', version: '2.0.0'
implementation group: 'space.vectrix.flare', name: 'flare-fastutil', version: '2.0.0'
2019-09-14 18:00:18 +02:00
// https://mvnrepository.com/artifact/com.google.code.gson/gson
api 'com.google.code.gson:gson:2.8.9'
2020-04-05 10:15:21 +02:00
2020-07-13 19:34:32 +02:00
// Noise library for terrain generation
// https://jitpack.io/#Articdive/Jnoise
api 'com.github.Articdive:Jnoise:2.1.0'
2020-05-02 23:16:41 +02:00
2020-07-13 19:34:32 +02:00
// Logging
2021-12-28 18:21:47 +01:00
api 'org.apache.logging.log4j:log4j-core:2.17.0'
2020-07-13 19:34:32 +02:00
// SLF4J is the base logger for most libraries, therefore we can hook it into log4j2.
2021-12-28 18:21:47 +01:00
api 'org.apache.logging.log4j:log4j-slf4j-impl:2.17.0'
2021-03-18 02:47:10 +01:00
// https://mvnrepository.com/artifact/org.jline/jline
2021-05-10 11:10:14 +02:00
implementation group: 'org.jline', name: 'jline', version: '3.20.0'
2021-08-15 21:53:07 +02:00
// https://mvnrepository.com/artifact/org.jline/jline-terminal-jansi
implementation group: 'org.jline', name: 'jline-terminal-jansi', version: '3.20.0'
2021-05-12 20:41:47 +02:00
2021-12-28 18:21:47 +01:00
implementation 'com.github.ben-manes.caffeine:caffeine:3.0.5'
2021-06-20 22:32:06 +02:00
2021-11-17 06:31:24 +01:00
// https://mvnrepository.com/artifact/org.jctools/jctools-core
implementation group: 'org.jctools', name: 'jctools-core', version: '3.3.0'
2021-05-15 07:57:28 +02:00
// Guava 21.0+ required for Mixin
api 'com.google.guava:guava:31.0.1-jre'
// Path finding
2021-04-06 23:59:48 +02:00
api 'com.github.MadMartian:hydrazine-path-finding:1.6.0'
2020-05-29 20:44:03 +02:00
2021-01-23 09:32:18 +01:00
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${project.kotlinVersion}"
api "org.jetbrains.kotlin:kotlin-reflect:${project.kotlinVersion}"
// NBT parsing/manipulation/saving
2021-12-13 16:41:30 +01:00
api("io.github.jglrxavpok.hephaistos:common:${project.hephaistosVersion}")
api("io.github.jglrxavpok.hephaistos:gson:${project.hephaistosVersion}")
/* api("io.github.jglrxavpok.hephaistos:common:${project.hephaistosVersion}") {
2020-10-16 12:16:06 +02:00
capabilities {
2021-12-13 16:41:30 +01:00
requireCapability("io.github.jglrxavpok.hephaistos:Hephaistos-gson")
2020-10-16 12:16:06 +02:00
}
2021-12-13 16:41:30 +01:00
}*/
2020-08-04 23:01:35 +02:00
api "com.github.Minestom:DependencyGetter:v1.0.1"
implementation 'com.github.Minestom:MinestomDataGenerator:801b8007cf'
2021-07-01 01:59:35 +02:00
// Adventure, for user-interface
api "net.kyori:adventure-api:$adventureVersion"
api "net.kyori:adventure-text-serializer-gson:$adventureVersion"
api "net.kyori:adventure-text-serializer-plain:$adventureVersion"
api "net.kyori:adventure-text-serializer-legacy:$adventureVersion"
2020-08-04 23:01:35 +02:00
// LWJGL, for map rendering
lwjglApi platform("org.lwjgl:lwjgl-bom:$lwjglVersion")
lwjglApi "org.lwjgl:lwjgl"
lwjglApi "org.lwjgl:lwjgl-egl"
lwjglApi "org.lwjgl:lwjgl-opengl"
lwjglApi "org.lwjgl:lwjgl-opengles"
lwjglApi "org.lwjgl:lwjgl-glfw"
lwjglApi "org.lwjgl:lwjgl-glfw"
lwjglApi 'org.joml:joml:1.10.2'
lwjglRuntimeOnly "org.lwjgl:lwjgl::$lwjglNatives"
lwjglRuntimeOnly "org.lwjgl:lwjgl-opengl::$lwjglNatives"
lwjglRuntimeOnly "org.lwjgl:lwjgl-opengles::$lwjglNatives"
lwjglRuntimeOnly "org.lwjgl:lwjgl-glfw::$lwjglNatives"
2019-08-03 15:25:24 +02:00
}
configurations.all {
// we use jetbrains annotations
exclude group: "org.checkerframework", module: "checker-qual"
2019-08-03 15:25:24 +02:00
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}