Mercurial > lada > lada-server
comparison pom.xml @ 273:cd78ec2f7d76
Add "get" tests for L*Service.
Requires a running test server and the unit-tests profile.
author | Ludwig Reiter <ludwig@intevation.de> |
---|---|
date | Thu, 25 Jul 2013 15:50:42 +0200 |
parents | 177351d4cca9 |
children | e1d37195b92d |
comparison
equal
deleted
inserted
replaced
272:0ddcc6240d47 | 273:cd78ec2f7d76 |
---|---|
159 <dependency> | 159 <dependency> |
160 <groupId>org.jboss.arquillian.protocol</groupId> | 160 <groupId>org.jboss.arquillian.protocol</groupId> |
161 <artifactId>arquillian-protocol-servlet</artifactId> | 161 <artifactId>arquillian-protocol-servlet</artifactId> |
162 <scope>test</scope> | 162 <scope>test</scope> |
163 </dependency> | 163 </dependency> |
164 | |
165 </dependencies> | 164 </dependencies> |
166 | 165 |
167 <build> | 166 <build> |
168 <!-- Maven will append the version to the finalName (which is the | 167 <!-- Maven will append the version to the finalName (which is the |
169 name given to the generated war, and hence the context root) --> | 168 name given to the generated war, and hence the context root) --> |
272 </configuration> | 271 </configuration> |
273 </plugin> | 272 </plugin> |
274 </plugins> | 273 </plugins> |
275 </build> | 274 </build> |
276 </profile> | 275 </profile> |
277 | 276 <profile> |
277 <id>unit-tests</id> | |
278 <dependencies> | |
279 <dependency> | |
280 <groupId>junit</groupId> | |
281 <artifactId>junit</artifactId> | |
282 <version>4.10</version> | |
283 <scope>test</scope> | |
284 </dependency> | |
285 <dependency> | |
286 <groupId>org.jboss.resteasy</groupId> | |
287 <artifactId>resteasy-jaxrs</artifactId> | |
288 <version>2.2.2.GA</version> | |
289 </dependency> | |
290 <dependency> | |
291 <groupId>org.apache.httpcomponents</groupId> | |
292 <artifactId>httpcore</artifactId> | |
293 <version>4.1.4</version> | |
294 </dependency> | |
295 </dependencies> | |
296 </profile> | |
278 </profiles> | 297 </profiles> |
279 </project> | 298 </project> |