mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-12 14:10:29 +00:00
Bumps [com.github.jelmerk:hnswlib-utils](https://github.com/jelmerk/hnswlib) from 1.1.0 to 1.1.2. - [Commits](https://github.com/jelmerk/hnswlib/commits/v1.1.2) --- updated-dependencies: - dependency-name: com.github.jelmerk:hnswlib-utils dependency-type: direct:production update-type: version-update:semver-patch ... 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.2")
|
|
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")
|
|
}
|
|
} |