|
1 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion>
|
3 | 4 | <groupId>info.cukes</groupId>
|
4 | 5 | <artifactId>cucumber-jvm</artifactId>
|
|
17 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
18 | 19 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
19 | 20 | <outputDirectory>${project.build.directory}</outputDirectory>
|
20 |
| - <gherkin.version>2.11.5</gherkin.version> |
21 |
| - <groovy.version>2.0.5</groovy.version> |
22 |
| - <spring.version>3.2.0.RELEASE</spring.version> |
23 |
| - <spring.data.version>1.1.0.RELEASE</spring.data.version> |
24 |
| - <hibernate.version>4.1.4.Final</hibernate.version> |
25 |
| - <hsqldb.version>2.2.8</hsqldb.version> |
| 21 | + <gherkin.version>2.11.6</gherkin.version> |
| 22 | + <groovy.version>2.1.0</groovy.version> |
| 23 | + <spring.version>3.2.1.RELEASE</spring.version> |
| 24 | + <spring.data.version>1.2.0.RELEASE</spring.data.version> |
| 25 | + <hibernate.version>4.1.9.Final</hibernate.version> |
| 26 | + <hsqldb.version>2.2.9</hsqldb.version> |
| 27 | + <guice.version>3.0</guice.version> |
| 28 | + <scala.version>2.10.0</scala.version> |
| 29 | + <clojure.version>1.5.0-RC4</clojure.version> |
| 30 | + <rhino.version>1.7R4</rhino.version> |
| 31 | + <ioke.version>P-0.4.0-p11</ioke.version> |
| 32 | + <jsoup.version>1.7.2</jsoup.version> |
| 33 | + <junit.version>4.11</junit.version> |
| 34 | + <jython.version>2.5.3</jython.version> |
| 35 | + <mockito.version>1.9.5</mockito.version> |
| 36 | + <selenium.version>2.29.0</selenium.version> |
| 37 | + <webbit.version>0.4.14</webbit.version> |
| 38 | + <webbit-rest.version>0.2.0</webbit-rest.version> |
| 39 | + <jruby.version>1.7.2</jruby.version> |
| 40 | + <weld-se.version>2.0.0.Beta2</weld-se.version> |
| 41 | + <cdi-api.version>1.1-PRD</cdi-api.version> |
| 42 | + <openejb-core.version>4.5.1</openejb-core.version> |
| 43 | + <cobertura.version>1.9.4.1</cobertura.version> |
| 44 | + <dbunit.version>2.4.9</dbunit.version> |
| 45 | + <log4j.version>1.2.17</log4j.version> |
| 46 | + <slf4j.version>1.7.1</slf4j.version> |
| 47 | + <freemarker.version>2.3.19</freemarker.version> |
| 48 | + <javax.servlet-api.version>3.0.1</javax.servlet-api.version> |
26 | 49 | </properties>
|
27 | 50 | <licenses>
|
28 | 51 | <license>
|
|
35 | 58 | <connection>scm:git:git://github.com/cucumber/cucumber-jvm.git</connection>
|
36 | 59 | < developerConnection>scm:git: [email protected]:cucumber/cucumber-jvm.git</ developerConnection>
|
37 | 60 | <url>git://github.com/cucumber/cucumber-jvm.git</url>
|
38 |
| - <tag>HEAD</tag> |
39 |
| - </scm> |
| 61 | + </scm> |
40 | 62 |
|
41 | 63 | <dependencyManagement>
|
42 | 64 | <dependencies>
|
|
137 | 159 | <artifactId>spring-orm</artifactId>
|
138 | 160 | <version>${spring.version}</version>
|
139 | 161 | </dependency>
|
| 162 | + <dependency> |
| 163 | + <groupId>org.springframework</groupId> |
| 164 | + <artifactId>spring-web</artifactId> |
| 165 | + <version>${spring.version}</version> |
| 166 | + </dependency> |
140 | 167 | <dependency>
|
141 | 168 | <groupId>org.springframework.data</groupId>
|
142 | 169 | <artifactId>spring-data-jpa</artifactId>
|
|
149 | 176 | </exclusion>
|
150 | 177 | </exclusions>
|
151 | 178 | </dependency>
|
| 179 | + <dependency> |
| 180 | + <groupId>org.springframework</groupId> |
| 181 | + <artifactId>spring-webmvc</artifactId> |
| 182 | + <version>${spring.version}</version> |
| 183 | + </dependency> |
| 184 | + <dependency> |
| 185 | + <groupId>org.springframework</groupId> |
| 186 | + <artifactId>spring-test</artifactId> |
| 187 | + <version>${spring.version}</version> |
| 188 | + </dependency> |
| 189 | + <dependency> |
| 190 | + <groupId>org.springframework</groupId> |
| 191 | + <artifactId>spring-jdbc</artifactId> |
| 192 | + <version>${spring.version}</version> |
| 193 | + </dependency> |
| 194 | + |
| 195 | + <dependency> |
| 196 | + <groupId>org.dbunit</groupId> |
| 197 | + <artifactId>dbunit</artifactId> |
| 198 | + <version>${dbunit.version}</version> |
| 199 | + </dependency> |
152 | 200 |
|
153 | 201 | <dependency>
|
154 | 202 | <groupId>org.hibernate</groupId>
|
|
159 | 207 | <groupId>org.hsqldb</groupId>
|
160 | 208 | <artifactId>hsqldb</artifactId>
|
161 | 209 | <version>${hsqldb.version}</version>
|
162 |
| - <scope>runtime</scope> |
| 210 | + </dependency> |
| 211 | + |
| 212 | + <dependency> |
| 213 | + <groupId>org.freemarker</groupId> |
| 214 | + <artifactId>freemarker</artifactId> |
| 215 | + <version>${freemarker.version}</version> |
| 216 | + </dependency> |
| 217 | + |
| 218 | + <dependency> |
| 219 | + <groupId>org.slf4j</groupId> |
| 220 | + <artifactId>jcl-over-slf4j</artifactId> |
| 221 | + <version>${slf4j.version}</version> |
| 222 | + </dependency> |
| 223 | + <dependency> |
| 224 | + <groupId>org.slf4j</groupId> |
| 225 | + <artifactId>slf4j-log4j12</artifactId> |
| 226 | + <version>${slf4j.version}</version> |
| 227 | + </dependency> |
| 228 | + <dependency> |
| 229 | + <groupId>log4j</groupId> |
| 230 | + <artifactId>log4j</artifactId> |
| 231 | + <version>${log4j.version}</version> |
| 232 | + </dependency> |
| 233 | + |
| 234 | + <dependency> |
| 235 | + <groupId>javax.servlet</groupId> |
| 236 | + <artifactId>javax.servlet-api</artifactId> |
| 237 | + <version>${javax.servlet-api.version}</version> |
163 | 238 | </dependency>
|
164 | 239 |
|
165 | 240 | <dependency>
|
166 | 241 | <groupId>com.google.inject</groupId>
|
167 | 242 | <artifactId>guice</artifactId>
|
168 |
| - <version>3.0</version> |
| 243 | + <version>${guice.version}</version> |
169 | 244 | </dependency>
|
170 | 245 | <dependency>
|
171 | 246 | <groupId>org.scala-lang</groupId>
|
172 | 247 | <artifactId>scala-library</artifactId>
|
173 |
| - <version>2.9.2</version> |
| 248 | + <version>${scala.version}</version> |
174 | 249 | </dependency>
|
175 | 250 | <dependency>
|
176 | 251 | <groupId>org.scala-lang</groupId>
|
177 | 252 | <artifactId>scala-compiler</artifactId>
|
178 |
| - <version>2.9.2</version> |
| 253 | + <version>${scala.version}</version> |
179 | 254 | </dependency>
|
180 | 255 | <dependency>
|
181 | 256 | <groupId>org.clojure</groupId>
|
182 | 257 | <artifactId>clojure</artifactId>
|
183 | 258 | <!-- Remember to bounce version in examples/clojure_cukes/project.clj as well -->
|
184 |
| - <version>1.5.0-beta1</version> |
| 259 | + <version>${clojure.version}</version> |
185 | 260 | </dependency>
|
186 | 261 | <dependency>
|
187 | 262 | <groupId>org.mozilla</groupId>
|
188 | 263 | <artifactId>rhino</artifactId>
|
189 |
| - <version>1.7R4</version> |
| 264 | + <version>${rhino.version}</version> |
190 | 265 | </dependency>
|
191 | 266 | <dependency>
|
192 | 267 | <groupId>org.ioke</groupId>
|
193 | 268 | <artifactId>ioke-lang</artifactId>
|
194 |
| - <version>P-0.4.0-p11</version> |
| 269 | + <version>${ioke.version}</version> |
195 | 270 | </dependency>
|
196 | 271 | <dependency>
|
197 | 272 | <groupId>org.ioke</groupId>
|
198 | 273 | <artifactId>ioke-lang-lib</artifactId>
|
199 |
| - <version>P-0.4.0-p11</version> |
| 274 | + <version>${ioke.version}</version> |
200 | 275 | </dependency>
|
201 | 276 | <dependency>
|
202 | 277 | <groupId>junit</groupId>
|
203 | 278 | <artifactId>junit</artifactId>
|
204 |
| - <version>4.11</version> |
| 279 | + <version>${junit.version}</version> |
205 | 280 | </dependency>
|
206 | 281 | <dependency>
|
207 | 282 | <groupId>org.python</groupId>
|
208 | 283 | <artifactId>jython-standalone</artifactId>
|
209 |
| - <version>2.5.3</version> |
| 284 | + <version>${jython.version}</version> |
210 | 285 | </dependency>
|
211 | 286 | <dependency>
|
212 | 287 | <groupId>org.mockito</groupId>
|
213 | 288 | <artifactId>mockito-all</artifactId>
|
214 |
| - <version>1.9.5</version> |
215 |
| - <scope>test</scope> |
| 289 | + <version>${mockito.version}</version> |
216 | 290 | </dependency>
|
217 | 291 | <dependency>
|
218 | 292 | <groupId>org.jsoup</groupId>
|
219 | 293 | <artifactId>jsoup</artifactId>
|
220 |
| - <version>1.7.1</version> |
221 |
| - <scope>test</scope> |
| 294 | + <version>${jsoup.version}</version> |
222 | 295 | </dependency>
|
223 | 296 | <dependency>
|
224 | 297 | <groupId>org.seleniumhq.selenium</groupId>
|
225 | 298 | <artifactId>selenium-chrome-driver</artifactId>
|
226 |
| - <version>2.25.0</version> |
| 299 | + <version>${selenium.version}</version> |
227 | 300 | </dependency>
|
228 | 301 | <dependency>
|
229 | 302 | <groupId>org.seleniumhq.selenium</groupId>
|
230 | 303 | <artifactId>selenium-server</artifactId>
|
231 |
| - <version>2.25.0</version> |
| 304 | + <version>${selenium.version}</version> |
232 | 305 | </dependency>
|
233 | 306 | <dependency>
|
234 | 307 | <groupId>org.webbitserver</groupId>
|
235 | 308 | <artifactId>webbit</artifactId>
|
236 |
| - <version>0.4.14</version> |
| 309 | + <version>${webbit.version}</version> |
| 310 | + </dependency> |
| 311 | + <dependency> |
| 312 | + <groupId>org.webbitserver</groupId> |
| 313 | + <artifactId>webbit-rest</artifactId> |
| 314 | + <version>${webbit-rest.version}</version> |
237 | 315 | </dependency>
|
238 | 316 | <dependency>
|
239 | 317 | <groupId>org.jruby</groupId>
|
240 | 318 | <artifactId>jruby-complete</artifactId>
|
241 |
| - <version>1.7.0</version> |
| 319 | + <version>${jruby.version}</version> |
242 | 320 | </dependency>
|
243 | 321 | <dependency>
|
244 | 322 | <groupId>org.jboss.weld.se</groupId>
|
245 | 323 | <artifactId>weld-se</artifactId>
|
246 |
| - <version>2.0.0.Alpha3</version> |
| 324 | + <version>${weld-se.version}</version> |
247 | 325 | </dependency>
|
248 | 326 | <dependency>
|
249 | 327 | <groupId>javax.enterprise</groupId>
|
250 | 328 | <artifactId>cdi-api</artifactId>
|
251 |
| - <version>1.1.EDR1.2</version> |
| 329 | + <version>${cdi-api.version}</version> |
252 | 330 | </dependency>
|
253 | 331 | <dependency>
|
254 | 332 | <groupId>org.apache.openejb</groupId>
|
255 | 333 | <artifactId>openejb-core</artifactId>
|
256 |
| - <version>4.5.0</version> |
| 334 | + <version>${openejb-core.version}</version> |
257 | 335 | </dependency>
|
258 | 336 |
|
259 | 337 | <dependency>
|
260 | 338 | <groupId>net.sourceforge.cobertura</groupId>
|
261 | 339 | <artifactId>cobertura</artifactId>
|
262 |
| - <version>1.9.4.1</version> |
| 340 | + <version>${cobertura.version}</version> |
263 | 341 | </dependency>
|
264 | 342 | </dependencies>
|
265 | 343 | </dependencyManagement>
|
|
308 | 386 | <profile>
|
309 | 387 | <id>examples</id>
|
310 | 388 | <modules>
|
311 |
| - <module>examples/spring-txn</module> |
| 389 | + <!--<module>examples/spring-txn</module>--> |
312 | 390 | <module>examples/java-calculator</module>
|
313 | 391 | <module>examples/groovy-calculator</module>
|
314 | 392 | <module>examples/scala-calculator</module>
|
|
549 | 627 | </extensions>
|
550 | 628 | </build>
|
551 | 629 | </project>
|
552 |
| - |
|
0 commit comments