blob: 9b651963b6e5d850762e409640367b06f232c7e2 [file] [log] [blame]
kmcpeake4fe18c82015-11-17 20:07:39 +00001<?xml version="1.0"?>
2<!--
3~ Copyright 2015 Open Networking Laboratory
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>
Brian O'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.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>
114 org.slf4j,
115 org.osgi.framework,
116 javax.ws.rs,
117 javax.ws.rs.core,
Jian Li9d616492016-03-09 10:52:49 -0800118 org.glassfish.jersey,
119 org.glassfish.jersey.servlet,
kmcpeake4fe18c82015-11-17 20:07:39 +0000120 com.fasterxml.jackson.databind,
121 com.fasterxml.jackson.databind.node,
122 com.fasterxml.jackson.core,
123 org.apache.karaf.shell.commands,
124 org.apache.commons.lang.math.*,
kmcpeakeb172d5f2015-12-10 11:30:43 +0000125 org.apache.commons.lang.*,
kmcpeake4fe18c82015-11-17 20:07:39 +0000126 com.google.common.*,
127 org.onlab.packet.*,
128 org.onlab.rest.*,
129 org.onosproject.*,
130 org.onlab.util.*,
131 org.jboss.netty.util.*
132 </Import-Package>
133 <Web-ContextPath>${web.context}</Web-ContextPath>
134 </instructions>
135 </configuration>
136 </plugin>
137 </plugins>
138 </build>
139
140</project>