kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 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> |
Thomas Vachuska | 389f108 | 2016-06-08 17:57:28 -0700 | [diff] [blame^] | 25 | <version>1.6.0-SNAPSHOT</version> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | |
| 29 | <artifactId>onos-app-fm-web</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | <properties> |
| 32 | <web.context>/onos/v1/fm</web.context> |
| 33 | <api.version>1.0.0</api.version> |
| 34 | <api.title>ONOS Fault Management Application REST API</api.title> |
| 35 | <api.description> |
| 36 | APIs for interacting with the Fault Management application. |
| 37 | </api.description> |
Thomas Vachuska | 429a116 | 2015-12-16 23:13:01 -0800 | [diff] [blame] | 38 | <api.package>org.onosproject.faultmanagement.web</api.package> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 39 | </properties> |
| 40 | |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>javax.ws.rs</groupId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 44 | <artifactId>javax.ws.rs-api</artifactId> |
| 45 | <version>2.0.1</version> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onos-incubator-api</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | <type>jar</type> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.onosproject</groupId> |
| 55 | <artifactId>onlab-osgi</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | <classifier>tests</classifier> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 61 | <groupId>org.glassfish.jersey.core</groupId> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 62 | <artifactId>jersey-client</artifactId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 63 | <version>2.22.2</version> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 64 | <type>jar</type> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.onosproject</groupId> |
| 68 | <artifactId>onos-core-common</artifactId> |
| 69 | <version>${project.version}</version> |
| 70 | <scope>test</scope> |
| 71 | <type>jar</type> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.onosproject</groupId> |
| 75 | <artifactId>onos-rest</artifactId> |
| 76 | <version>${project.version}</version> |
| 77 | <scope>test</scope> |
| 78 | <type>jar</type> |
| 79 | </dependency> |
| 80 | |
| 81 | <dependency> |
| 82 | <groupId>org.onosproject</groupId> |
| 83 | <artifactId>onos-rest</artifactId> |
| 84 | <version>${project.version}</version> |
| 85 | <classifier>tests</classifier> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | |
| 89 | <dependency> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 90 | <groupId>org.glassfish.jersey.test-framework</groupId> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 91 | <artifactId>jersey-test-framework-core</artifactId> |
Jian Li | 9d61649 | 2016-03-09 10:52:49 -0800 | [diff] [blame] | 92 | <scope>test</scope> |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 93 | </dependency> |
| 94 | |
| 95 | </dependencies> |
| 96 | <build> |
| 97 | <plugins> |
| 98 | <plugin> |
| 99 | <groupId>org.apache.felix</groupId> |
| 100 | <artifactId>maven-bundle-plugin</artifactId> |
| 101 | <extensions>true</extensions> |
| 102 | <configuration> |
| 103 | <instructions> |
| 104 | <_wab>src/main/webapp/</_wab> |
| 105 | <Include-Resource> |
| 106 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 107 | {maven-resources} |
| 108 | </Include-Resource> |
| 109 | <Bundle-SymbolicName> |
| 110 | ${project.groupId}.${project.artifactId} |
| 111 | </Bundle-SymbolicName> |
| 112 | <Import-Package> |
Brian O'Connor | a450bd0 | 2016-04-04 14:00:37 -0700 | [diff] [blame] | 113 | *,org.glassfish.jersey.servlet |
kmcpeake | 4fe18c8 | 2015-11-17 20:07:39 +0000 | [diff] [blame] | 114 | </Import-Package> |
| 115 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 116 | </instructions> |
| 117 | </configuration> |
| 118 | </plugin> |
| 119 | </plugins> |
| 120 | </build> |
| 121 | |
| 122 | </project> |