Skip to content

Commit 650e7da

Browse files
committed
Prepare for 3.33.0
1 parent 20c0d93 commit 650e7da

File tree

5 files changed

+37
-94
lines changed

5 files changed

+37
-94
lines changed

.travis.yml

Lines changed: 34 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -2,57 +2,56 @@ sudo: required
22
os: linux
33
dist: trusty
44
services:
5-
- docker
5+
- docker
66
language: java
77
matrix:
88
include:
9-
# - stage: Build
10-
# jdk: openjdk7
11-
# if: tag IS present
12-
# script:
13-
# - bash ./scripts/travis-deploy.sh
14-
- jdk: oraclejdk8
15-
if: tag IS present
16-
script:
17-
- bash ./scripts/travis-deploy.sh
18-
# - stage: Update
19-
# if: tag IS NOT present
20-
# script:
21-
# - bash ./scripts/keepSync.sh
9+
- jdk: oraclejdk8
10+
script:
11+
- make
2212

2313
install:
24-
- mkdir -p /tmp/willena/
25-
- openssl aes-256-cbc -K $encrypted_0e6f4e1fcef0_key -iv $encrypted_0e6f4e1fcef0_iv -in /home/travis/build/Willena/sqlite-jdbc-crypt/scripts/private.key.enc -out /tmp/willena/private.key -d
26-
- gpg --import /tmp/willena/private.key
27-
- rm /tmp/willena/private.key
14+
- mkdir -p /tmp/willena/
15+
- openssl aes-256-cbc -K $encrypted_0e6f4e1fcef0_key -iv $encrypted_0e6f4e1fcef0_iv -in /home/travis/build/Willena/sqlite-jdbc-crypt/scripts/private.key.enc -out /tmp/willena/private.key -d
16+
- gpg --import /tmp/willena/private.key
17+
- rm /tmp/willena/private.key
2818
before_install:
29-
- sudo apt-get update
30-
- sudo apt-get install -y xmlstarlet gnupg
19+
- sudo apt-get update
20+
- sudo apt-get install -y xmlstarlet gnupg
21+
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 10
22+
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 10
23+
- sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 30
24+
- sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 30
25+
- sudo update-alternatives --set cc /usr/bin/gcc
26+
- sudo update-alternatives --set c++ /usr/bin/g++
27+
- sudo update-alternatives --set g++ "/usr/bin/g++-5"
28+
- sudo update-alternatives --set gcc "/usr/bin/gcc-5"
29+
- gcc -v
3130
before_deploy:
32-
- echo "Now deploying things !"
33-
- git config --local user.name "Villena Guillaume"
34-
- git config --local user.email "[email protected]"
35-
- source VERSION
36-
- make deploy
31+
- echo "Now deploying things !"
32+
- git config --local user.name "Villena Guillaume"
33+
- git config --local user.email "[email protected]"
34+
- source VERSION
35+
- make deploy
3736
addons:
3837
apt:
3938
sources:
40-
- ubuntu-toolchain-r-test
39+
- ubuntu-toolchain-r-test
4140
packages:
42-
- gcc-5
43-
- g++-5
41+
- gcc-5
42+
- g++-5
4443
deploy:
4544
provider: releases
4645
api_key: "$GH_TOKEN"
4746
overwrite: true
4847
file_glob: true
49-
file:
50-
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version.jar"
51-
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version-javadoc.jar"
52-
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version-sources.jar"
53-
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version.jar.asc"
54-
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version-javadoc.jar.asc"
55-
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version-sources.jar.asc"
48+
file:
49+
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version.jar"
50+
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version-javadoc.jar"
51+
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version-sources.jar"
52+
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version.jar.asc"
53+
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version-javadoc.jar.asc"
54+
- "/home/travis/build/Willena/sqlite-jdbc-crypt/target/sqlite-jdbc-$version-sources.jar.asc"
5655

5756
skip_cleanup: true
5857
name: SQLite-jdbc-$version

VERSION

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
version=3.33.0
2-
3-
1+
version=3.33.0

pom.xml

Lines 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>io.github.willena</groupId>
66
<artifactId>sqlite-jdbc</artifactId>
7-
<version>3.33.0-SNAPSHOT</version>
7+
<version>3.33.0</version>
88
<name>SQLite JDBC</name>
99
<description>SQLite JDBC library with encryption and authentication support</description>
1010
<url>https://github.com/Willena/sqlite-jdbc-crypt</url>

scripts/travis-deploy.sh

Lines changed: 0 additions & 54 deletions
This file was deleted.

settings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
</properties>
2121
</profile>
2222
</profiles>
23-
</settings>
23+
</settings>

0 commit comments

Comments
 (0)