tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.onlab.onos</groupId> |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 9 | <artifactId>onlab-utils</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
| 13 | |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 14 | <artifactId>onlab-rest</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 15 | <packaging>bundle</packaging> |
| 16 | |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 17 | <description>ON.Lab JAX-RS utilities</description> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 18 | |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>com.sun.jersey</groupId> |
| 22 | <artifactId>jersey-servlet</artifactId> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 26 | <artifactId>jersey-test-framework-core</artifactId> |
| 27 | <version>1.18.1</version> |
| 28 | <scope>test</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 32 | <artifactId>jersey-test-framework-grizzly2</artifactId> |
| 33 | <version>1.18.1</version> |
| 34 | <scope>test</scope> |
| 35 | </dependency> |
| 36 | |
| 37 | <dependency> |
| 38 | <groupId>org.onlab.onos</groupId> |
tom | 94bb4a4 | 2014-08-27 22:12:02 -0700 | [diff] [blame] | 39 | <artifactId>onlab-osgi</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | </dependencies> |
| 43 | |
| 44 | </project> |