DATAMONGO-1411 - Enable build on TravisCI.

We now start MongoDB server via apt-get instead of relying on the TravisCI managed 2.4.2 installation.
Doing this we altered tests to just check on the port and not the host part of the URIs.

Additionally we upgraded build profiles, removed promoted snapshot-versions, renamed mongo32-next to mongo32  and added mongo33-next build profile.

Original pull request: #358
This commit is contained in:
Mark Paluch
2016-04-08 11:28:20 +02:00
committed by Christoph Strobl
parent cf44a7105f
commit f5cfcda673
3 changed files with 46 additions and 11 deletions

17
pom.xml
View File

@@ -107,7 +107,7 @@
<id>mongo-next</id>
<properties>
<mongo>2.14.0-SNAPSHOT</mongo>
<mongo>2.15.0-SNAPSHOT</mongo>
</properties>
<repositories>
@@ -148,16 +148,25 @@
<id>mongo31</id>
<properties>
<mongo>3.1.0</mongo>
<mongo>3.1.1</mongo>
</properties>
</profile>
<profile>
<id>mongo32-next</id>
<id>mongo32</id>
<properties>
<mongo>3.2.0-SNAPSHOT</mongo>
<mongo>3.2.2</mongo>
</properties>
</profile>
<profile>
<id>mongo33-next</id>
<properties>
<mongo>3.3.0-SNAPSHOT</mongo>
</properties>
<repositories>