mvn dependency:tree | grep sqlite-jdbc For Gradle (Kotlin DSL or Groovy):
Then run:
Introduction If you’ve landed on this page, you’re likely working on a Java project that requires a lightweight, embedded database. SQLite is the world’s most widely used database engine, and the sqlite-jdbc library is the magic bridge that allows Java applications to interact with SQLite databases without any native binaries or separate installation steps. download sqlitejdbc372jar install
# Linux / macOS / Git Bash on Windows wget https://repo1.maven.org/maven2/org/xerial/sqlite-jdbc/3.72.0/sqlite-jdbc-3.72.0.jar Or with curl: mvn dependency:tree | grep sqlite-jdbc For Gradle (Kotlin