mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-06 02:01:58 +02:00
100 lines
2.8 KiB
Kotlin
100 lines
2.8 KiB
Kotlin
/*
|
|
* This file was generated by the Gradle "init" task.
|
|
*
|
|
* This generated file contains a sample Java Library project to get you started.
|
|
* For more details take a look at the Java Libraries chapter in the Gradle
|
|
* User Manual available at https://docs.gradle.org/6.3/userguide/java_library_plugin.html
|
|
*/
|
|
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
kotlin("plugin.serialization")
|
|
`java-library`
|
|
}
|
|
|
|
// FIXME: Please replace these to Java 11 as that's what they actually are
|
|
kotlin {
|
|
jvmToolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
}
|
|
tasks.withType<KotlinCompile> {
|
|
compilerOptions {
|
|
jvmTarget.set(JvmTarget.JVM_17)
|
|
freeCompilerArgs.set(listOf("-Xvalue-classes"))
|
|
}
|
|
}
|
|
|
|
// Set compiler to use UTF-8
|
|
tasks.withType<JavaCompile> {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
tasks.withType<Test> {
|
|
systemProperty("file.encoding", "UTF-8")
|
|
}
|
|
tasks.withType<Javadoc> {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
tasks.withType<Jar> {
|
|
from("../../LICENSE-APACHE")
|
|
from("../../LICENSE-MIT")
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
// Use jcenter for resolving dependencies.
|
|
// You can declare any Maven/Ivy/file repository here.
|
|
mavenCentral()
|
|
maven(url = "https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":solarxr-protocol"))
|
|
|
|
// This dependency is used internally,
|
|
// and not exposed to consumers on their own compile classpath.
|
|
implementation("com.google.flatbuffers:flatbuffers-java:22.10.26")
|
|
implementation("commons-cli:commons-cli:1.11.0")
|
|
implementation("com.fasterxml.jackson.core:jackson-databind:2.21.0")
|
|
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.0")
|
|
|
|
implementation("com.github.jonpeterson:jackson-module-model-versioning:1.2.2")
|
|
implementation("org.apache.commons:commons-math3:3.6.1")
|
|
implementation("org.apache.commons:commons-lang3:3.20.0")
|
|
implementation("org.apache.commons:commons-collections4:4.5.0")
|
|
|
|
implementation("com.illposed.osc:javaosc-core:0.8")
|
|
implementation("org.java-websocket:Java-WebSocket:1.+")
|
|
implementation("com.melloware:jintellitype:1.+")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.10.0")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
|
|
implementation("com.mayakapps.kache:kache:2.1.1")
|
|
|
|
api("com.github.loucass003:EspflashKotlin:v0.11.0")
|
|
|
|
// Allow the use of reflection
|
|
implementation(kotlin("reflect"))
|
|
|
|
// Jitpack
|
|
implementation("com.github.SlimeVR:oscquery-kt:566a0cba58")
|
|
|
|
testImplementation(kotlin("test"))
|
|
// Use JUnit test framework
|
|
testImplementation(platform("org.junit:junit-bom:6.0.2"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testImplementation("org.junit.platform:junit-platform-launcher")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|