File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 31
31
32
32
# snapshots
33
33
sonatype.sbt
34
+
35
+ # Vagrant
36
+ /.vagrant /
37
+
Original file line number Diff line number Diff line change 1
1
language : scala
2
2
jdk :
3
3
- oraclejdk8
4
+ - openjdk6
5
+
4
6
scala :
5
7
- 2.10.4
6
8
- 2.11.4
@@ -9,7 +11,7 @@ sbt_args: "'set resolvers += \"Sonatype OSS Snapshots\" at \"https://oss.sonatyp
9
11
before_script :
10
12
- jdk_switcher use openjdk6
11
13
- export JAVA6_HOME=$JAVA_HOME
12
- - jdk_switcher use oraclejdk8
14
+ - jdk_switcher use $TRAVIS_JDK_VERSION
13
15
14
16
after_success :
15
17
- >
Original file line number Diff line number Diff line change 4
4
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
5
5
VAGRANTFILE_API_VERSION = "2"
6
6
7
- Vagrant . configure ( VAGRANTFILE_API_VERSION ) do |config |
8
- config . vm . box = "ubuntu/trusty64"
7
+ Vagrant . require_version ">= 1.7.0"
9
8
9
+ Vagrant . configure ( VAGRANTFILE_API_VERSION ) do |config |
10
10
if Vagrant . has_plugin? ( "vagrant-cachier" )
11
11
config . cache . scope = :box
12
12
end
@@ -15,6 +15,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
15
15
config . omnibus . chef_version = :latest
16
16
end
17
17
18
+ config . vm . box = "ubuntu/trusty64"
19
+
20
+ config . vm . network "forwarded_port" , guest : 5005 , host : 5005
21
+
18
22
config . vm . provider :virtualbox do |v |
19
23
v . memory = 2048
20
24
v . cpus = 2
You can’t perform that action at this time.
0 commit comments