blob: ffae36847b7123639c2b897a7b386a5b873e2a97 [file] [log] [blame]
kmcpeake4fe18c82015-11-17 20:07:39 +00001<?xml version="1.0"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003~ Copyright 2015-present Open Networking Laboratory
kmcpeake4fe18c82015-11-17 20:07:39 +00004~
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'Connore642f7c2016-05-23 18:33:04 -070025 <version>1.7.0-SNAPSHOT</version>
kmcpeake4fe18c82015-11-17 20:07:39 +000026 <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 Vachuska429a1162015-12-16 23:13:01 -080039 <api.package>org.onosproject.faultmanagement.web</api.package>
kmcpeake4fe18c82015-11-17 20:07:39 +000040 </properties>
41
42 <dependencies>
43 <dependency>
44 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080045 <artifactId>javax.ws.rs-api</artifactId>
46 <version>2.0.1</version>
kmcpeake4fe18c82015-11-17 20:07:39 +000047 </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>
Jian Li9d616492016-03-09 10:52:49 -080062 <groupId>org.glassfish.jersey.core</groupId>
kmcpeake4fe18c82015-11-17 20:07:39 +000063 <artifactId>jersey-client</artifactId>
Jian Li9d616492016-03-09 10:52:49 -080064 <version>2.22.2</version>
kmcpeake4fe18c82015-11-17 20:07:39 +000065 <type>jar</type>
66 </dependency>
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-core-common</artifactId>
70 <version>${project.version}</version>
71 <scope>test</scope>
72 <type>jar</type>
73 </dependency>
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-rest</artifactId>
77 <version>${project.version}</version>
78 <scope>test</scope>
79 <type>jar</type>
80 </dependency>
81
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onos-rest</artifactId>
85 <version>${project.version}</version>
86 <classifier>tests</classifier>
87 <scope>test</scope>
88 </dependency>
89
90 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080091 <groupId>org.glassfish.jersey.test-framework</groupId>
kmcpeake4fe18c82015-11-17 20:07:39 +000092 <artifactId>jersey-test-framework-core</artifactId>
Jian Li9d616492016-03-09 10:52:49 -080093 <scope>test</scope>
kmcpeake4fe18c82015-11-17 20:07:39 +000094 </dependency>
95
96 </dependencies>
97 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-bundle-plugin</artifactId>
102 <extensions>true</extensions>
103 <configuration>
104 <instructions>
105 <_wab>src/main/webapp/</_wab>
106 <Include-Resource>
107 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
108 {maven-resources}
109 </Include-Resource>
110 <Bundle-SymbolicName>
111 ${project.groupId}.${project.artifactId}
112 </Bundle-SymbolicName>
113 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700114 *,org.glassfish.jersey.servlet
kmcpeake4fe18c82015-11-17 20:07:39 +0000115 </Import-Package>
116 <Web-ContextPath>${web.context}</Web-ContextPath>
117 </instructions>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
122
123</project>