Skip to content

Commit

Permalink
Fix wildcard version numbers preventing release (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
raulraja authored Jul 3, 2023
1 parent 1a616f8 commit d356d4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpt4all-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ kotlin {

val jvmMain by getting {
dependencies {
implementation("com.hexadevlabs:gpt4all-java-binding:+")
implementation("ai.djl.huggingface:tokenizers:+")
implementation(libs.gpt4all.java.bindings)
implementation(libs.ai.djl.huggingface.tokenizers)
}
}

Expand Down
4 changes: 4 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ mysql = "8.0.33"
semverGradle = "0.5.0-rc.1"
scala = "3.3.0"
openai-client-version = "3.3.1"
gpt4all-java = "1.1.3"
ai-djl = "0.22.1"

[libraries]
arrow-core = { module = "io.arrow-kt:arrow-core", version.ref = "arrow" }
Expand Down Expand Up @@ -78,6 +80,8 @@ apache-pdf-box = { module = "org.apache.pdfbox:pdfbox", version.ref = "pdfbox" }
jdbc-mysql-connector = { module = "mysql:mysql-connector-java", version.ref = "mysql" }
scala-lang = { module = "org.scala-lang:scala3-library_3", version.ref = "scala" }
openai-client = { module = "com.aallam.openai:openai-client", version.ref = "openai-client-version" }
gpt4all-java-bindings = { module = "com.hexadevlabs:gpt4all-java-binding", version.ref = "gpt4all-java" }
ai-djl-huggingface-tokenizers = { module = "ai.djl.huggingface:tokenizers", version.ref = "ai-djl" }

[bundles]
arrow = [
Expand Down

0 comments on commit d356d4f

Please sign in to comment.