mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-09 19:45:16 +00:00
Bumps [org.json:json](https://github.com/douglascrockford/JSON-java) from 20230618 to 20231013. - [Release notes](https://github.com/douglascrockford/JSON-java/releases) - [Changelog](https://github.com/stleary/JSON-java/blob/master/docs/RELEASES.md) - [Commits](https://github.com/douglascrockford/JSON-java/commits) --- updated-dependencies: - dependency-name: org.json:json dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
No EOL
478 B
Kotlin
19 lines
No EOL
478 B
Kotlin
plugins {
|
|
id("codegpt.java-conventions")
|
|
id("antlr")
|
|
}
|
|
|
|
dependencies {
|
|
antlr("org.antlr:antlr4:4.13.1")
|
|
api("com.github.jelmerk:hnswlib-core:1.1.0")
|
|
api("com.github.jelmerk:hnswlib-utils:1.1.0")
|
|
implementation("org.antlr:antlr4-runtime:4.13.1")
|
|
implementation("org.json:json:20231013")
|
|
}
|
|
|
|
tasks {
|
|
generateGrammarSource {
|
|
outputDirectory = file("src/main/java/grammar")
|
|
arguments = arguments + listOf("-package", "grammar")
|
|
}
|
|
} |