tom | 8bb1606 | 2014-09-12 14:47:46 -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> |
| 9 | <artifactId>onos-apps</artifactId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
| 13 | |
tom | 4009d2c | 2014-09-12 15:53:42 -0700 | [diff] [blame] | 14 | <artifactId>onos-app-tvue</artifactId> |
tom | 8bb1606 | 2014-09-12 14:47:46 -0700 | [diff] [blame] | 15 | <packaging>bundle</packaging> |
| 16 | |
| 17 | <description>ONOS simple topology viewer</description> |
| 18 | |
| 19 | <properties> |
| 20 | <web.context>/onos/tvue</web.context> |
| 21 | </properties> |
| 22 | |
tom | f297f39 | 2014-09-15 14:46:49 -0700 | [diff] [blame] | 23 | <dependencies> |
| 24 | <dependency> |
| 25 | <groupId>org.onlab.onos</groupId> |
| 26 | <artifactId>onlab-rest</artifactId> |
| 27 | <version>${project.version}</version> |
| 28 | </dependency> |
| 29 | |
| 30 | <dependency> |
| 31 | <groupId>com.sun.jersey</groupId> |
| 32 | <artifactId>jersey-servlet</artifactId> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 36 | <artifactId>jersey-test-framework-core</artifactId> |
| 37 | <version>1.18.1</version> |
| 38 | <scope>test</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 42 | <artifactId>jersey-test-framework-grizzly2</artifactId> |
| 43 | <version>1.18.1</version> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>com.fasterxml.jackson.core</groupId> |
| 49 | <artifactId>jackson-databind</artifactId> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>com.fasterxml.jackson.core</groupId> |
| 54 | <artifactId>jackson-annotations</artifactId> |
| 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
| 58 | <groupId>org.osgi</groupId> |
| 59 | <artifactId>org.osgi.core</artifactId> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.apache.felix</groupId> |
| 63 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 64 | </dependency> |
| 65 | </dependencies> |
| 66 | |
| 67 | <build> |
| 68 | <plugins> |
| 69 | <plugin> |
| 70 | <groupId>org.apache.felix</groupId> |
| 71 | <artifactId>maven-bundle-plugin</artifactId> |
| 72 | <extensions>true</extensions> |
| 73 | <configuration> |
| 74 | <instructions> |
| 75 | <_wab>src/main/webapp/</_wab> |
| 76 | <Bundle-SymbolicName> |
| 77 | ${project.groupId}.${project.artifactId} |
| 78 | </Bundle-SymbolicName> |
| 79 | <Import-Package> |
| 80 | org.osgi.framework, |
| 81 | javax.ws.rs,javax.ws.rs.core, |
| 82 | com.sun.jersey.api.core, |
| 83 | com.sun.jersey.spi.container.servlet, |
| 84 | com.sun.jersey.server.impl.container.servlet, |
| 85 | com.fasterxml.jackson.databind, |
| 86 | com.fasterxml.jackson.databind.node, |
alshabib | 8aef1ad | 2014-09-15 17:47:31 -0700 | [diff] [blame] | 87 | org.onlab.packet.*, |
tom | f297f39 | 2014-09-15 14:46:49 -0700 | [diff] [blame] | 88 | org.onlab.rest.*, |
| 89 | org.onlab.onos.* |
| 90 | </Import-Package> |
| 91 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 92 | </instructions> |
| 93 | </configuration> |
| 94 | </plugin> |
| 95 | </plugins> |
| 96 | </build> |
| 97 | |
tom | 8bb1606 | 2014-09-12 14:47:46 -0700 | [diff] [blame] | 98 | </project> |