blob: 81c0e2d853e27ae8d3653dfc59a3346e93c2d4ab [file] [log] [blame]
Jonathan Hartea750842015-04-23 17:44:49 -07001<?xml version="1.0" encoding="UTF-8"?>
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 xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <parent>
21 <artifactId>onos-apps</artifactId>
22 <groupId>org.onosproject</groupId>
Brian O'Connor75aed402015-06-01 16:58:14 -070023 <version>1.2.0-rc2</version>
Jonathan Hartea750842015-04-23 17:44:49 -070024 <relativePath>../pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
28 <artifactId>onos-app-cordfabric</artifactId>
29
30 <packaging>bundle</packaging>
31 <description>Simple fabric application for CORD</description>
32
33 <properties>
34 <onos.app.name>org.onosproject.cordfabric</onos.app.name>
Jonathan Hart443ebed2015-05-05 14:02:12 -070035 <web.context>/onos/cordfabric</web.context>
Jonathan Hartea750842015-04-23 17:44:49 -070036 </properties>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onos-cli</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44
45 <dependency>
46 <groupId>org.apache.karaf.shell</groupId>
47 <artifactId>org.apache.karaf.shell.console</artifactId>
48 </dependency>
Jonathan Hart443ebed2015-05-05 14:02:12 -070049 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-rest</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-rest</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>javax.ws.rs</groupId>
61 <artifactId>jsr311-api</artifactId>
62 <version>1.1.1</version>
63 </dependency>
64 <dependency>
65 <groupId>com.sun.jersey</groupId>
66 <artifactId>jersey-servlet</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>com.fasterxml.jackson.core</groupId>
70 <artifactId>jackson-databind</artifactId>
71 </dependency>
72
73 <dependency>
74 <groupId>com.fasterxml.jackson.core</groupId>
75 <artifactId>jackson-annotations</artifactId>
76 </dependency>
77
78 <dependency>
79 <groupId>org.osgi</groupId>
80 <artifactId>org.osgi.compendium</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.osgi</groupId>
84 <artifactId>org.osgi.core</artifactId>
85 </dependency>
Jonathan Hartea750842015-04-23 17:44:49 -070086 </dependencies>
Jonathan Hart443ebed2015-05-05 14:02:12 -070087
88 <build>
89 <plugins>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-bundle-plugin</artifactId>
93 <extensions>true</extensions>
94 <configuration>
95 <instructions>
96 <_wab>src/main/webapp/</_wab>
97 <Bundle-SymbolicName>
98 ${project.groupId}.${project.artifactId}
99 </Bundle-SymbolicName>
100 <Import-Package>
101 org.slf4j,
102 org.osgi.framework,
103 javax.ws.rs,
104 javax.ws.rs.core,
105 com.sun.jersey.api.core,
106 com.sun.jersey.spi.container.servlet,
107 com.sun.jersey.server.impl.container.servlet,
108 com.fasterxml.jackson.databind,
109 com.fasterxml.jackson.databind.node,
110 org.apache.karaf.shell.commands,
111 org.apache.commons.lang.math.*,
112 com.google.common.*,
113 org.onlab.packet.*,
114 org.onlab.rest.*,
115 org.onosproject.*,
116 org.onlab.util.*,
117 org.jboss.netty.util.*
118 </Import-Package>
119 <Web-ContextPath>${web.context}</Web-ContextPath>
120 </instructions>
121 </configuration>
122 </plugin>
123 </plugins>
124 </build>
Jonathan Hartea750842015-04-23 17:44:49 -0700125</project>