Thomas Vachuska | b645147 | 2015-03-31 16:03:56 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2015 Open Networking Laboratory |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-apps-test</artifactId> |
Brian O'Connor | f967ad6 | 2015-09-18 15:19:54 -0700 | [diff] [blame] | 25 | <version>1.4.0-SNAPSHOT</version> |
Thomas Vachuska | b645147 | 2015-03-31 16:03:56 -0700 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-app-demo</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
Thomas Vachuska | a7a0f56 | 2015-04-14 23:27:44 -0700 | [diff] [blame] | 32 | <description>Flow throughput test application</description> |
Thomas Vachuska | b645147 | 2015-03-31 16:03:56 -0700 | [diff] [blame] | 33 | |
| 34 | <properties> |
Thomas Vachuska | 586afd8 | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 35 | <onos.app.name>org.onosproject.demo</onos.app.name> |
Thomas Vachuska | b645147 | 2015-03-31 16:03:56 -0700 | [diff] [blame] | 36 | <web.context>/onos/demo</web.context> |
Ray Milkey | f2ab6f3 | 2015-08-20 14:25:51 -0700 | [diff] [blame] | 37 | <api.title>ONOS Flow Throughput Test App API</api.title> |
| 38 | <api.description> |
| 39 | APIs for interacting with the flow throughput test application. |
| 40 | </api.description> |
| 41 | <api.package>org.onosproject.demo</api.package> |
Thomas Vachuska | b645147 | 2015-03-31 16:03:56 -0700 | [diff] [blame] | 42 | </properties> |
| 43 | |
| 44 | <dependencies> |
| 45 | <dependency> |
| 46 | <groupId>org.osgi</groupId> |
| 47 | <artifactId>org.osgi.compendium</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
| 51 | <artifactId>onlab-rest</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
| 57 | <artifactId>onos-rest</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>com.sun.jersey</groupId> |
| 63 | <artifactId>jersey-servlet</artifactId> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>com.fasterxml.jackson.core</groupId> |
| 67 | <artifactId>jackson-databind</artifactId> |
| 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>com.fasterxml.jackson.core</groupId> |
| 72 | <artifactId>jackson-annotations</artifactId> |
| 73 | </dependency> |
| 74 | |
| 75 | <dependency> |
| 76 | <groupId>org.osgi</groupId> |
| 77 | <artifactId>org.osgi.core</artifactId> |
| 78 | </dependency> |
| 79 | </dependencies> |
| 80 | |
| 81 | <build> |
| 82 | <plugins> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.felix</groupId> |
| 85 | <artifactId>maven-bundle-plugin</artifactId> |
| 86 | <extensions>true</extensions> |
| 87 | <configuration> |
| 88 | <instructions> |
| 89 | <_wab>src/main/webapp/</_wab> |
Ray Milkey | f2ab6f3 | 2015-08-20 14:25:51 -0700 | [diff] [blame] | 90 | <Include-Resource> |
| 91 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 92 | {maven-resources} |
| 93 | </Include-Resource> |
Thomas Vachuska | b645147 | 2015-03-31 16:03:56 -0700 | [diff] [blame] | 94 | <Bundle-SymbolicName> |
| 95 | ${project.groupId}.${project.artifactId} |
| 96 | </Bundle-SymbolicName> |
| 97 | <Import-Package> |
| 98 | org.slf4j, |
| 99 | org.osgi.framework, |
| 100 | javax.ws.rs,javax.ws.rs.core, |
| 101 | com.sun.jersey.api.core, |
| 102 | com.sun.jersey.spi.container.servlet, |
| 103 | com.sun.jersey.server.impl.container.servlet, |
| 104 | com.fasterxml.jackson.databind, |
| 105 | com.fasterxml.jackson.databind.node, |
| 106 | org.apache.commons.lang.math.*, |
| 107 | com.google.common.*, |
| 108 | org.onlab.packet.*, |
| 109 | org.onlab.rest.*, |
| 110 | org.onosproject.*, |
| 111 | org.onlab.util.*, |
| 112 | org.jboss.netty.util.* |
| 113 | </Import-Package> |
| 114 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 115 | </instructions> |
| 116 | </configuration> |
| 117 | </plugin> |
| 118 | </plugins> |
| 119 | </build> |
| 120 | |
| 121 | </project> |