This repository was archived by the owner on Feb 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-8
lines changed Expand file tree Collapse file tree 3 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 1
1
language : java
2
- dist : trusty
2
+
3
+ matrix :
4
+ include :
5
+ - os : linux
6
+ - os : osx
7
+ osx_image : xcode9.3
3
8
4
9
jdk :
5
10
- oraclejdk8
@@ -24,12 +29,8 @@ addons:
24
29
before_install :
25
30
- if [ ! -z "$GPG_SECRET_KEYS" ]; then echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import; fi
26
31
- if [ ! -z "$GPG_OWNERTRUST" ]; then echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust; fi
27
- - sudo apt-get -qq update
28
- - sudo apt-get install -y dbus-x11
29
- - " export DISPLAY=:99.0"
30
- - " sh -e /etc/init.d/xvfb start"
31
- - sleep 3 # give xvfb some time to start
32
-
32
+ - .travis/setup_xvfb.sh
33
+
33
34
install : mvn --settings .travis/settings.xml verify -Dgpg.skip -B -V -P$PROFILE
34
35
script : skip
35
36
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ sudo apt-get -qq update
4
+ sudo apt-get install -y dbus-x11
5
+ export DISPLAY=:99.0
6
+ sh -e /etc/init.d/xvfb start
7
+ # give xvfb some time to start
8
+ sleep 3
Original file line number Diff line number Diff line change 67
67
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
68
68
<downloadSources >true</downloadSources >
69
69
<downloadJavadocs >true</downloadJavadocs >
70
- <aspectj .version>1.9.1 </aspectj .version>
70
+ <aspectj .version>1.9.4 </aspectj .version>
71
71
<java .version>1.8</java .version>
72
72
<robotframework .maven.plugin.version>1.5.1</robotframework .maven.plugin.version>
73
73
<robotframework .version>3.1.2</robotframework .version>
You can’t perform that action at this time.
0 commit comments