blob: 762746adf513ae8a5cd49f042b19974bab9b1a15 [file] [log] [blame]
kmcpeake4fe18c82015-11-17 20:07:39 +00001<?xml version="1.0"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003~ Copyright 2015-present Open Networking Foundation
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>
ONOS Jenkins User0e78e272017-12-12 03:27:00 +000025 <version>1.13.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>
kmcpeake4fe18c82015-11-17 20:07:39 +000045 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-incubator-api</artifactId>
kmcpeake4fe18c82015-11-17 20:07:39 +000049 <type>jar</type>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onlab-osgi</artifactId>
kmcpeake4fe18c82015-11-17 20:07:39 +000054 <classifier>tests</classifier>
55 <scope>test</scope>
56 </dependency>
57 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080058 <groupId>org.glassfish.jersey.core</groupId>
kmcpeake4fe18c82015-11-17 20:07:39 +000059 <artifactId>jersey-client</artifactId>
kmcpeake4fe18c82015-11-17 20:07:39 +000060 <type>jar</type>
61 </dependency>
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-core-common</artifactId>
kmcpeake4fe18c82015-11-17 20:07:39 +000065 <scope>test</scope>
66 <type>jar</type>
67 </dependency>
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-rest</artifactId>
71 <version>${project.version}</version>
72 <scope>test</scope>
73 <type>jar</type>
74 </dependency>
75
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onos-rest</artifactId>
79 <version>${project.version}</version>
80 <classifier>tests</classifier>
81 <scope>test</scope>
82 </dependency>
83
84 <dependency>
Jian Li9d616492016-03-09 10:52:49 -080085 <groupId>org.glassfish.jersey.test-framework</groupId>
kmcpeake4fe18c82015-11-17 20:07:39 +000086 <artifactId>jersey-test-framework-core</artifactId>
Jian Li9d616492016-03-09 10:52:49 -080087 <scope>test</scope>
kmcpeake4fe18c82015-11-17 20:07:39 +000088 </dependency>
89
90 </dependencies>
91 <build>
92 <plugins>
93 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-bundle-plugin</artifactId>
96 <extensions>true</extensions>
97 <configuration>
98 <instructions>
99 <_wab>src/main/webapp/</_wab>
100 <Include-Resource>
101 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
102 {maven-resources}
103 </Include-Resource>
104 <Bundle-SymbolicName>
105 ${project.groupId}.${project.artifactId}
106 </Bundle-SymbolicName>
107 <Import-Package>
Brian O'Connora450bd02016-04-04 14:00:37 -0700108 *,org.glassfish.jersey.servlet
kmcpeake4fe18c82015-11-17 20:07:39 +0000109 </Import-Package>
110 <Web-ContextPath>${web.context}</Web-ContextPath>
111 </instructions>
112 </configuration>
113 </plugin>
114 </plugins>
115 </build>
116
117</project>