Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0a37c1e

Browse filesBrowse files
committed
3.19.3 prep
1 parent e9e00d1 commit 0a37c1e
Copy full SHA for 0a37c1e

5 files changed

+18-12Lines changed: 18 additions & 12 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.gitignore‎

Copy file name to clipboardExpand all lines: .gitignore
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ src/main/resources/org/ibex/nestedvm/*.o
99
atlassian-ide-plugin.xml
1010
.classpath
1111
.project
12+
.DS_Store
Collapse file

‎.travis.yml‎

Copy file name to clipboardExpand all lines: .travis.yml
+1-10Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,4 @@ jdk:
1212
- oraclejdk8
1313

1414
script:
15-
# Deploy a snapshot version only for master branch and jdk8
16-
- if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then
17-
if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
18-
make && mvn -s settings.xml deploy -DskipTests;
19-
else
20-
make;
21-
fi;
22-
else
23-
make linux64 && mvn test;
24-
fi
15+
- ./scripts/travis-deploy.sh
Collapse file

‎VERSION‎

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version=3.18.0
1+
version=3.19.3
22

33

Collapse file

‎pom.xml‎

Copy file name to clipboardExpand all lines: pom.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.xerial</groupId>
66
<artifactId>sqlite-jdbc</artifactId>
7-
<version>3.18.0</version>
7+
<version>3.19.3-SNAPSHOT</version>
88
<name>SQLite JDBC</name>
99
<description>SQLite JDBC library</description>
1010

Collapse file

‎scripts/travis-deploy.sh‎

Copy file name to clipboard
+14Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
VERSION=$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.3.1:exec)
4+
5+
# Deploy a snapshot version only for master branch and jdk8
6+
if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then
7+
if [ "$TRAVIS_PULL_REQUEST" == "false" -a "$VERSION" == *SNAPSHOT ]; then
8+
echo "make && mvn -s settings.xml deploy -DskipTests";
9+
else
10+
echo "make";
11+
fi;
12+
else
13+
echo "make linux64 && mvn test";
14+
fi

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.