blob: 9c120f423d902ea9ee25f13240058d1d2865a2e1 [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>
Ray Milkey8fd28c72017-05-02 14:37:34 -070025 <version>1.10.0-SNAPSHOT</version>
kmcpeake4fe18c82015-11-17 20:07:39 +000026 </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 Vachuska429a1162015-12-16 23:13:01 -080038 <api.package>org.onosproject.faultmanagement.web</api.package>
kmcpeake4fe18c82015-11-17 20:07:39 +000039 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>javax.ws.rs</groupId>
Jian Li9d616492016-03-09 10:52:49 -080044 <artifactId>javax.ws.rs-api</artifactId>
45 <version>2.0.1</version>
kmcpeake4fe18c82015-11-17 20:07:39 +000046 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-incubator-api</artifactId>
kmcpeake4fe18c82015-11-17 20:07:39 +000050 <type>jar</type>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onlab-osgi</artifactId>
kmcpeake4fe18c82015-11-17 20:07:39 +000055 <classifier>tests</classifier>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080059 <groupId>org.glassfish.jersey.core</groupId>
kmcpeake4fe18c82015-11-17 20:07:39 +000060 <artifactId>jersey-client</artifactId>
kmcpeake4fe18c82015-11-17 20:07:39 +000061 <type>jar</type>
62 </dependency>
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onos-core-common</artifactId>
kmcpeake4fe18c82015-11-17 20:07:39 +000066 <scope>test</scope>
67 <type>jar</type>
68 </dependency>
69 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onos-rest</artifactId>
72 <version>${project.version}</version>
73 <scope>test</scope>
74 <type>jar</type>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onos-rest</artifactId>
80 <version>${project.version}</version>
81 <classifier>tests</classifier>
82 <scope>test</scope>
83 </dependency>
84
85 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080086 <groupId>org.glassfish.jersey.test-framework</groupId>
kmcpeake4fe18c82015-11-17 20:07:39 +000087 <artifactId>jersey-test-framework-core</artifactId>
Jian Li9d616492016-03-09 10:52:49 -080088 <scope>test</scope>
kmcpeake4fe18c82015-11-17 20:07:39 +000089 </dependency>
90
91 </dependencies>
92 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-bundle-plugin</artifactId>
97 <extensions>true</extensions>
98 <configuration>
99 <instructions>
100 <_wab>src/main/webapp/</_wab>
101 <Include-Resource>
102 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
103 {maven-resources}
104 </Include-Resource>
105 <Bundle-SymbolicName>
106 ${project.groupId}.${project.artifactId}
107 </Bundle-SymbolicName>
108 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700109 *,org.glassfish.jersey.servlet
kmcpeake4fe18c82015-11-17 20:07:39 +0000110 </Import-Package>
111 <Web-ContextPath>${web.context}</Web-ContextPath>
112 </instructions>
113 </configuration>
114 </plugin>
115 </plugins>
116 </build>
117
118</project>