Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2201.11.0] Add SQLite jdbc dependency to the distribution #43647

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions distribution/zip/jballerina-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ dependencies {
dist libs.ow2.asm.util
dist libs.jackson.datatype.jsr310

// Following dependencies are required for lang-server
dist libs.sqlite.jdbc;

// Following dependencies are required for transactions
dist libs.atomikos.transactions.jta
dist libs.atomikos.transactions.api
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ slf4jJdk14Version="2.0.7"
slf4jSimpleVersion="2.0.7"
snakeyamlVersion="2.0"
sonarqubeGradlePluginVersion="4.0.0.2929"
sqliteJdbcVersion="3.47.0.0"
squareupOkioVersion="3.4.0"
swaggerModelsVersion="2.2.22"
swaggerParserV2Version="2.1.22"
Expand Down Expand Up @@ -239,6 +240,7 @@ slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4jApiVersion"}
slf4j-jdk14 = { module = "org.slf4j:slf4j-jdk14", version.ref = "slf4jJdk14Version"}
slf4j-simple = { module = "org.slf4j:slf4j-simple", version.ref = "slf4jSimpleVersion"}
snakeyaml = { module = "org.yaml:snakeyaml", version.ref = "snakeyamlVersion"}
sqlite-jdbc = { module = "org.xerial:sqlite-jdbc", version.ref = "sqliteJdbcVersion"}
squareup-okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttpVersion"}
squareup-mock-webserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "okhttpVersion"}
squareup-okio = { module = "com.squareup.okio:okio", version.ref = "squareupOkioVersion"}
Expand Down
Loading