f50c04c828
build / build (push) Has been cancelled
- Renamed package from me.zacharias.chat to me.neurodock across all 8 modules - Updated Gradle group from me.zacharias.neurodock to me.neurodock - Updated README and other files to reflect new Gitea org URL (Chat_things → neurodock) Dev note: 95 files touched. The Great Refactor is complete, long may it rest.
29 lines
609 B
Groovy
29 lines
609 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
version = '1.6'
|
|
|
|
dependencies {
|
|
implementation project(":Plugin-API")
|
|
api "org.json:json:20250107"
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(javaVersion)) // Set Java version
|
|
}
|
|
}
|
|
|
|
// Tell shadow not to interfere with the main publication
|
|
shadowJar {
|
|
archiveClassifier = 'all' // keeps shadow as -all.jar, not the main artifact
|
|
}
|
|
|
|
configurations {
|
|
[apiElements, runtimeElements].each {
|
|
it.outgoing.artifacts.removeIf {
|
|
it.buildDependencies.getDependencies(null).contains(shadowJar)
|
|
}
|
|
}
|
|
} |