diff --git a/README.adoc b/README.adoc index 05da93e19..4a3a047ce 100644 --- a/README.adoc +++ b/README.adoc @@ -29,19 +29,18 @@ SQLite JDBC is a library for accessing SQLite databases through the JDBC API. Fo . <> `sqlite-jdbc-{project-version}.jar` then append this jar file into your classpath. -. https://search.maven.org/remotecontent?filepath=org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar[Download] `slf4j-api-1.7.36.jar` then append this jar file into your classpath. . Open a SQLite database connection from your code. (see the example below) === Example usage -Assuming `sqlite-jdbc-{project-version}.jar` and `slf4j-api-1.7.36.jar` are placed in the current directory. +Assuming `sqlite-jdbc-{project-version}.jar` is placed in the current directory. [source,shell,subs="attributes+"] ---- > javac Sample.java -> java -classpath ".;sqlite-jdbc-{project-version}.jar;slf4j-api-1.7.36.jar" Sample # in Windows +> java -classpath ".;sqlite-jdbc-{project-version}.jar" Sample # in Windows or -> java -classpath ".:sqlite-jdbc-{project-version}.jar:slf4j-api-1.7.36.jar" Sample # in macOS or Linux +> java -classpath ".:sqlite-jdbc-{project-version}.jar" Sample # in macOS or Linux name = leo id = 1 name = yui diff --git a/pom.xml b/pom.xml index 7f3d2782e..bee67a8c5 100644 --- a/pom.xml +++ b/pom.xml @@ -415,6 +415,7 @@ org.slf4j slf4j-api 1.7.36 + true