blob: 3cce8e73a5973409930a740a4b8c2c43294d8ba2 [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 </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>
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 Li9d616492016-03-09 10:52:49 -080061 <groupId>org.glassfish.jersey.core</groupId>
kmcpeake4fe18c82015-11-17 20:07:39 +000062 <artifactId>jersey-client</artifactId>
Jian Li9d616492016-03-09 10:52:49 -080063 <version>2.22.2</version>
kmcpeake4fe18c82015-11-17 20:07:39 +000064 <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 Li9d616492016-03-09 10:52:49 -080090 <groupId>org.glassfish.jersey.test-framework</groupId>
kmcpeake4fe18c82015-11-17 20:07:39 +000091 <artifactId>jersey-test-framework-core</artifactId>
Jian Li9d616492016-03-09 10:52:49 -080092 <scope>test</scope>
kmcpeake4fe18c82015-11-17 20:07:39 +000093 </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'Connora450bd02016-04-04 14:00:37 -0700113 *,org.glassfish.jersey.servlet
kmcpeake4fe18c82015-11-17 20:07:39 +0000114 </Import-Package>
115 <Web-ContextPath>${web.context}</Web-ContextPath>
116 </instructions>
117 </configuration>
118 </plugin>
119 </plugins>
120 </build>
121
122</project>