Because the project to use to SQLite, although there are ready-made jars, but consider the project's easy-to-use unified management, decided to use Maven
Results tangled half a day sqlite-jdbc in the MAVEN default warehouse is not found at all, so modified setting adopt open source China based on Neuxs
The Warehouse
<dependency>
<groupId>com.github.axet.sqlite4java</groupId>
<artifactId>sqlite4java</artifactId>
<version>0.282-3</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.7.2</version>
</dependency>
Modified: C:\Users\Administrator\.m2\settings.xml
<mirrors>
<!-- mirror | Specifies a repository mirror site to use instead of a given
repository. The repository that | this mirror serves has an ID that matches
the mirrorOf element of this mirror. IDs are used | for inheritance and direct
lookup purposes, and must be unique across the set of mirrors. | -->
<mirror>
<id>nexus-osc</id>
<mirrorOf>*</mirrorOf>
<name>Nexus osc</name>
<url>http://maven.oschina.net/content/groups/public/</url>
</mirror>
</mirrors>
Restart Tool