An open API service indexing awesome lists of open source software.

https://github.com/ericdallo/sqlite-jni-graal-fix

A fix for an issue with JNI missing sqlite classes in GraalVM native-image.
https://github.com/ericdallo/sqlite-jni-graal-fix

Last synced: 3 months ago
JSON representation

A fix for an issue with JNI missing sqlite classes in GraalVM native-image.

Awesome Lists containing this project

README

          

# sqlite-jni-graal-fix

[![Clojars Project](https://img.shields.io/clojars/v/ericdallo/sqlite-jni-graal-fix.svg)](https://clojars.org/ericdallo/sqlite-jni-graal-fix)

_A fix for an issue with JNI missing sqlite classes in GraalVM native-image._

## Usage

Just add this lib to your app classpath, for example using `lein`:

```clojure
(defproject sample "1.0.0"
...
:profiles {:native-image
{:dependencies [[ericdallo/sqlite-jni-graal-fix "0.0.3-graalvm-21.1.0"]]}})
```