forked from Chat_things/NeuroDock
- Updated `OllamaObject` to support tool registration with sources. - Improved error handling and debug logging in multiple classes. - Added Maven plugin and publication setup in `build.gradle`. - Updated version to `1.3`. Signed-off-by: Zacharias <zacharias@4zellen.se>
16 lines
200 B
Groovy
16 lines
200 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
group = 'me.zacharias'
|
|
version = '1.3'
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21)) // Set Java version
|
|
}
|
|
} |