Skip to content

Commit

Permalink
DATAMONGO-1303 - Added build profiles for MongoDB Java driver 3.1 and…
Browse files Browse the repository at this point in the history
… 3.2 snapshots.

Added new build profiles mongod31 and mongo32-next to build the project against the latest MongoDB 3.1 driver as well as upcoming snapshots of the 3.2 generation.
  • Loading branch information
odrotbohm committed Oct 12, 2015
1 parent 7b27368 commit f171938
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@

<id>mongo3</id>
<properties>
<mongo>3.0.2</mongo>
<mongo>3.0.4</mongo>
</properties>

</profile>
Expand All @@ -132,7 +132,7 @@

<id>mongo3-next</id>
<properties>
<mongo>3.0.0-SNAPSHOT</mongo>
<mongo>3.0.5-SNAPSHOT</mongo>
</properties>

<repositories>
Expand All @@ -143,6 +143,32 @@
</repositories>

</profile>

<profile>

<id>mongo31</id>
<properties>
<mongo>3.1.0</mongo>
</properties>

</profile>

<profile>

<id>mongo32-next</id>
<properties>
<mongo>3.2.0-SNAPSHOT</mongo>
</properties>

<repositories>
<repository>
<id>mongo-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>

</profile>

</profiles>

<dependencies>
Expand Down

0 comments on commit f171938

Please sign in to comment.