We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cdc797 commit 227c7e8Copy full SHA for 227c7e8
Makefile
@@ -8,7 +8,7 @@ RESOURCE_DIR = src/main/resources
8
all: jni-header package
9
10
deploy:
11
- mvn package deploy -P release --settings settings.xml
+ mvn deploy -P release --settings settings.xml
12
13
DOCKER_RUN_OPTS=--rm
14
MVN:=mvn
src/main/java/org/sqlite/SQLiteJDBCLoader.java
@@ -416,8 +416,8 @@ public static final class VersionHolder {
416
version = versionData.getProperty("version", version);
417
version = version.trim().replaceAll("[^0-9\\.]", "");
418
} else {
419
- throw new FileNotFoundException("Version file is null");
420
- }
+ throw new FileNotFoundException("Version file is null");
+ }
421
} catch (IOException e) {
422
e.printStackTrace();
423
}
0 commit comments