Files
NeuroDock/Plugin-API/build.gradle
T
Zacharias fcbb405a2e
build / build (push) Has been cancelled
Updated Plugin-API version as it has recived updates since 0.1.0, but yet dine to be in 1.0 release
Updeaded the RPCP loader to use JarFile instead of a virtual FS

Signed-off-by: zacharias <alienfromdia@proton.me>
2026-06-16 17:58:33 +02:00

31 lines
580 B
Groovy

plugins {
id 'java-library'
}
version = '0.1.2'
repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.classgraph:classgraph:4.8.184'
api "org.json:json:20250107"
api "org.jetbrains:annotations:23.1.0"
testImplementation platform('org.junit:junit-bom:6.0.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(javaVersion)) // Set Java version
}
}