DATAMONGO-1558 - Upgrade MongoDB server version to, and add build profile for MongoDB 3.4.

Added MongoDB 3.4 profile to pom.xml and upgraded to MongoDB 3.4 on travis-ci.
This commit is contained in:
Christoph Strobl
2016-12-12 15:50:12 +01:00
parent dc57b66adf
commit 7b49b120e3
2 changed files with 12 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ env:
- PROFILE=mongo31
- PROFILE=mongo32
- PROFILE=mongo33
- PROFILE=mongo34
- PROFILE=mongo34-next
# Current MongoDB version is 2.4.2 as of 2016-04, see https://github.com/travis-ci/travis-ci/issues/3694
@@ -22,7 +23,7 @@ env:
addons:
apt:
sources:
- mongodb-3.2-precise
- mongodb-3.4-precise
packages:
- mongodb-org-server
- mongodb-org-shell

11
pom.xml
View File

@@ -178,11 +178,20 @@
</profile>
<profile>
<id>mongo34</id>
<properties>
<mongo>3.4.0</mongo>
</properties>
</profile>
<profile>
<id>mongo34-next</id>
<properties>
<mongo>3.4.0-SNAPSHOT</mongo>
<mongo>3.4.1-SNAPSHOT</mongo>
</properties>
<repositories>