File tree Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Original file line number Diff line number Diff line change
1
+ * .swp
1
2
* .iml
2
3
.vagrant
3
4
.DS_Store
Original file line number Diff line number Diff line change 1
1
language : java
2
+
2
3
jdk :
3
4
- openjdk7
4
5
- oraclejdk7
5
6
- oraclejdk8
7
+
6
8
addons :
7
- postgresql : " 9.3 "
9
+ postgresql : " 9.5 "
8
10
9
11
# go faster on travis
10
12
sudo : false
11
13
12
14
# stop mvn install from running
13
15
install : true
14
16
15
- script : mvn -B -V package javadoc:javadoc test
17
+ script : mvn -B -V package $( [[ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]] && echo javadoc:javadoc ) test
16
18
17
19
after_success :
18
- - mvn clean test jacoco:report coveralls:report
20
+ - mvn -B -V clean test jacoco:report coveralls:report
Original file line number Diff line number Diff line change 71
71
<plugin >
72
72
<groupId >org.apache.maven.plugins</groupId >
73
73
<artifactId >maven-compiler-plugin</artifactId >
74
- <version >3.1</version >
74
+ <version >3.5. 1</version >
75
75
<configuration >
76
76
<source >1.7</source >
77
77
<target >1.7</target >
80
80
<plugin >
81
81
<groupId >org.apache.maven.plugins</groupId >
82
82
<artifactId >maven-resources-plugin</artifactId >
83
- <version >2.6 </version >
83
+ <version >3.0.1 </version >
84
84
</plugin >
85
85
<plugin >
86
86
<groupId >org.eluder.coveralls</groupId >
87
87
<artifactId >coveralls-maven-plugin</artifactId >
88
- <version >3.0.1 </version >
88
+ <version >4.2.0 </version >
89
89
</plugin >
90
90
<plugin >
91
91
<groupId >org.jacoco</groupId >
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ if ! which docker & > /dev/null ; then
4
+ echo ' Ensure that docker is installed and is in PATH'
5
+ exit 1
6
+ fi
7
+
8
+ if ! docker info | grep -q ' Server Version' ; then
9
+ echo ' Ensure that docker service is running'
10
+ echo 1
11
+ fi
12
+
3
13
if nc -w 5 -z localhost 5432; then
4
14
echo ' There is already some process listening on port 5432.'
5
15
echo ' Please shutdown any existing PostgreSQL instance and re-run this script.'
6
16
exit 1
7
17
fi
8
18
9
- PGVERSION=9.4.5
19
+ PGVERSION=9.5.4
10
20
11
21
container=$( docker ps | grep postgres:$PGVERSION )
12
22
if [ -z " $container " ]; then
You can’t perform that action at this time.
0 commit comments