ProxyAI/codegpt-core/build.gradle.kts
dependabot[bot] 47e9a7a1da
Bump org.json:json from 20230618 to 20231013 in /codegpt-core (#240)
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>
2023-11-07 21:50:17 +02:00

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")
}
}