Files
NeuroDock/Plugin-API/build.gradle
Zacharias 5ae5920478 Moved versions of the "public facing" modules to the gradle.properties
Core:
- Fixed my promis of making Core work with multiple OllamaObjects
2026-07-30 21:24:06 +02:00

31 lines
589 B
Groovy

plugins {
id 'java-library'
}
version = pluginAPIVersion
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
}
}