kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 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 |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 19 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 20 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-app-fm</artifactId> |
Brian O'Connor | 880dc20d | 2015-12-16 22:53:14 -0800 | [diff] [blame] | 25 | <version>1.5.0-SNAPSHOT</version> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | |
| 30 | <artifactId>onos-app-fm-web</artifactId> |
| 31 | <packaging>bundle</packaging> |
| 32 | <properties> |
| 33 | <web.context>/onos/v1/fm</web.context> |
| 34 | <api.version>1.0.0</api.version> |
| 35 | <api.title>ONOS Fault Management Application REST API</api.title> |
| 36 | <api.description> |
| 37 | APIs for interacting with the Fault Management application. |
| 38 | </api.description> |
Thomas Vachuska | 429a116 | 2015-12-16 23:13:01 -0800 | [diff] [blame] | 39 | <api.package>org.onosproject.faultmanagement.web</api.package> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 40 | </properties> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>javax.ws.rs</groupId> |
| 45 | <artifactId>jsr311-api</artifactId> |
| 46 | <version>1.1.1</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.onosproject</groupId> |
| 50 | <artifactId>onos-incubator-api</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | <type>jar</type> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onlab-osgi</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | <classifier>tests</classifier> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>com.sun.jersey</groupId> |
| 63 | <artifactId>jersey-client</artifactId> |
| 64 | <version>1.19</version> |
| 65 | <scope>test</scope> |
| 66 | <type>jar</type> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onos-core-common</artifactId> |
| 71 | <version>${project.version}</version> |
| 72 | <scope>test</scope> |
| 73 | <type>jar</type> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.onosproject</groupId> |
| 77 | <artifactId>onos-rest</artifactId> |
| 78 | <version>${project.version}</version> |
| 79 | <scope>test</scope> |
| 80 | <type>jar</type> |
| 81 | </dependency> |
| 82 | |
| 83 | <dependency> |
| 84 | <groupId>org.onosproject</groupId> |
| 85 | <artifactId>onos-rest</artifactId> |
| 86 | <version>${project.version}</version> |
| 87 | <classifier>tests</classifier> |
| 88 | <scope>test</scope> |
| 89 | </dependency> |
| 90 | |
| 91 | <dependency> |
| 92 | <groupId>com.sun.jersey.jersey-test-framework</groupId> |
| 93 | <artifactId>jersey-test-framework-core</artifactId> |
| 94 | <version>1.19</version> |
| 95 | </dependency> |
| 96 | |
| 97 | </dependencies> |
| 98 | <build> |
| 99 | <plugins> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.felix</groupId> |
| 102 | <artifactId>maven-bundle-plugin</artifactId> |
| 103 | <extensions>true</extensions> |
| 104 | <configuration> |
| 105 | <instructions> |
| 106 | <_wab>src/main/webapp/</_wab> |
| 107 | <Include-Resource> |
| 108 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 109 | {maven-resources} |
| 110 | </Include-Resource> |
| 111 | <Bundle-SymbolicName> |
| 112 | ${project.groupId}.${project.artifactId} |
| 113 | </Bundle-SymbolicName> |
| 114 | <Import-Package> |
| 115 | org.slf4j, |
| 116 | org.osgi.framework, |
| 117 | javax.ws.rs, |
| 118 | javax.ws.rs.core, |
| 119 | com.sun.jersey.api.core, |
| 120 | com.sun.jersey.spi.container.servlet, |
| 121 | com.sun.jersey.server.impl.container.servlet, |
| 122 | com.fasterxml.jackson.databind, |
| 123 | com.fasterxml.jackson.databind.node, |
| 124 | com.fasterxml.jackson.core, |
| 125 | org.apache.karaf.shell.commands, |
| 126 | org.apache.commons.lang.math.*, |
kmcpeake | b172d5f | 2015-12-10 11:30:43 +0000 | [diff] [blame] | 127 | org.apache.commons.lang.*, |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 128 | com.google.common.*, |
| 129 | org.onlab.packet.*, |
| 130 | org.onlab.rest.*, |
| 131 | org.onosproject.*, |
| 132 | org.onlab.util.*, |
| 133 | org.jboss.netty.util.* |
| 134 | </Import-Package> |
| 135 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 136 | </instructions> |
| 137 | </configuration> |
| 138 | </plugin> |
| 139 | </plugins> |
| 140 | </build> |
| 141 | |
| 142 | </project> |