File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
java/fr/bastoup/bperipherals/database Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ apply plugin: 'eclipse'
1616apply plugin : ' maven-publish'
1717apply plugin : " com.wynprice.cursemaven"
1818
19- version = ' 1.1.0 '
19+ version = ' 1.1.1 '
2020group = ' fr.bastoup.bperipherals' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
2121archivesBaseName = ' bperipherals'
2222
Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ public class DBFactory {
1212 private static final String URL_PREFIX = "jdbc:sqlite:" ;
1313 private static final String URL_SUFFIX = "?limit_attached=0" ;
1414
15+ static {
16+ try {
17+ Class .forName ("org.sqlite.JDBC" );
18+ } catch (ClassNotFoundException e ) {
19+ throw new RuntimeException (e );
20+ }
21+ }
22+
1523 public static DBFactory getInstance () {
1624
1725 return new DBFactory ();
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ issueTrackerURL = "https://github.com/BastouP411/bperipherals/issues"
55
66[[mods ]]
77modId = " bperipherals"
8- version = " 1.1.0 "
8+ version = " 1.1.1 "
99displayName = " BPeripherals"
1010# updateJSONURL="http://myurl.me/"
11- # displayURL="http ://example .com/"
11+ displayURL = " https ://github .com/BastouP411/bperipherals/wiki "
1212logoFile = " logo.png"
1313# credits="Thanks for this example mod goes to Java"
1414authors = " BastouP"
You can’t perform that action at this time.
0 commit comments