Skip to content

Commit f171938

Browse files
committed
DATAMONGO-1303 - Added build profiles for MongoDB Java driver 3.1 and 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.
1 parent 7b27368 commit f171938

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

pom.xml

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123

124124
<id>mongo3</id>
125125
<properties>
126-
<mongo>3.0.2</mongo>
126+
<mongo>3.0.4</mongo>
127127
</properties>
128128

129129
</profile>
@@ -132,7 +132,7 @@
132132

133133
<id>mongo3-next</id>
134134
<properties>
135-
<mongo>3.0.0-SNAPSHOT</mongo>
135+
<mongo>3.0.5-SNAPSHOT</mongo>
136136
</properties>
137137

138138
<repositories>
@@ -143,6 +143,32 @@
143143
</repositories>
144144

145145
</profile>
146+
147+
<profile>
148+
149+
<id>mongo31</id>
150+
<properties>
151+
<mongo>3.1.0</mongo>
152+
</properties>
153+
154+
</profile>
155+
156+
<profile>
157+
158+
<id>mongo32-next</id>
159+
<properties>
160+
<mongo>3.2.0-SNAPSHOT</mongo>
161+
</properties>
162+
163+
<repositories>
164+
<repository>
165+
<id>mongo-snapshots</id>
166+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
167+
</repository>
168+
</repositories>
169+
170+
</profile>
171+
146172
</profiles>
147173

148174
<dependencies>

0 commit comments

Comments
 (0)