blob: 43d86c83bb79e91276d00a37ac3441cb220f2bd2 [file] [log] [blame]
alshabib3b1eadc2016-02-01 17:57:00 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connoraf764bf2016-04-09 01:19:45 -07003 ~ Copyright 2016-present Open Networking Laboratory
alshabib3b1eadc2016-02-01 17:57:00 -08004 ~
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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
alshabib772e1582016-06-01 17:50:05 -070024 <artifactId>onos</artifactId>
Charles Chan58473792016-06-26 22:37:17 -070025 <version>1.6.0</version>
alshabib772e1582016-06-01 17:50:05 -070026 <relativePath></relativePath>
alshabib3b1eadc2016-02-01 17:57:00 -080027 </parent>
28
alshabib772e1582016-06-01 17:50:05 -070029 <groupId>org.opencord</groupId>
30 <artifactId>mcast</artifactId>
alshabib6d5853b2016-09-02 10:28:36 -070031 <version>1.0.0</version>
alshabib3b1eadc2016-02-01 17:57:00 -080032 <packaging>bundle</packaging>
33
alshabib9ff8d922016-07-09 11:35:20 +020034<!--
alshabib8afc7012016-06-02 22:01:56 -070035 <repositories>
36 <repository>
37 <id>oss-staging</id>
38 <name>OSS Staging</name>
39 <url>https://oss.sonatype.org/content/groups/staging</url>
40 </repository>
41 </repositories>
alshabib9ff8d922016-07-09 11:35:20 +020042-->
alshabib8afc7012016-06-02 22:01:56 -070043
alshabib3b1eadc2016-02-01 17:57:00 -080044 <description>CORD Multicast application</description>
45
46 <properties>
alshabib191751a2016-06-01 17:55:26 -070047 <onos.app.name>org.opencord.mcast</onos.app.name>
Charles Chan58473792016-06-26 22:37:17 -070048 <onos.version>1.6.0</onos.version>
Jian Li0f1bd262016-03-08 09:18:53 -080049 <onos.app.category>Traffic Steering</onos.app.category>
Jian Lieddfb972016-03-07 21:26:48 -080050 <onos.app.title>CORD Multicast App</onos.app.title>
Jian Li0f1bd262016-03-08 09:18:53 -080051 <onos.app.url>http://opencord.org</onos.app.url>
alshabibb9d5ccd2016-06-01 17:56:30 -070052 <onos.app.requires>org.opencord.config</onos.app.requires>
alshabib3b1eadc2016-02-01 17:57:00 -080053 </properties>
54
55 <dependencies>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-cli</artifactId>
alshabib772e1582016-06-01 17:50:05 -070059 <version>${onos.version}</version>
alshabib3b1eadc2016-02-01 17:57:00 -080060 </dependency>
61 <dependency>
alshabib772e1582016-06-01 17:50:05 -070062 <groupId>org.opencord</groupId>
Jonathan Hartdca5d682016-06-13 13:50:56 -070063 <artifactId>cord-config</artifactId>
Jonathan Hartc1761bd2016-05-06 15:23:23 -070064 <version>${project.version}</version>
65 </dependency>
66 <dependency>
alshabib3b1eadc2016-02-01 17:57:00 -080067 <groupId>org.apache.karaf.shell</groupId>
68 <artifactId>org.apache.karaf.shell.console</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>com.google.guava</groupId>
72 <artifactId>guava</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onlab-misc</artifactId>
alshabib772e1582016-06-01 17:50:05 -070077 <version>${onos.version}</version>
alshabib3b1eadc2016-02-01 17:57:00 -080078 </dependency>
79 <dependency>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>org.apache.felix.scr</artifactId>
alshabib3b1eadc2016-02-01 17:57:00 -080082 </dependency>
83 <dependency>
84 <groupId>org.osgi</groupId>
85 <artifactId>org.osgi.compendium</artifactId>
86 <version>5.0.0</version>
87 </dependency>
Jonathan Hart28271642016-02-10 16:13:54 -080088 <dependency>
Jian Li46472d72016-03-09 10:52:49 -080089 <groupId>org.glassfish.jersey.core</groupId>
Jonathan Hart28271642016-02-10 16:13:54 -080090 <artifactId>jersey-client</artifactId>
Jian Li46472d72016-03-09 10:52:49 -080091 <version>2.22.2</version>
Jonathan Hart28271642016-02-10 16:13:54 -080092 </dependency>
alshabib09069c92016-02-21 14:49:51 -080093 <dependency>
alshabib772e1582016-06-01 17:50:05 -070094 <groupId>org.opencord</groupId>
95 <artifactId>olt-api</artifactId>
alshabib09069c92016-02-21 14:49:51 -080096 <version>${project.version}</version>
97 </dependency>
alshabib772e1582016-06-01 17:50:05 -070098
99 <dependency>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>org.apache.felix.scr.annotations</artifactId>
102 <scope>provided</scope>
103 </dependency>
104
105 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
106
107 <dependency>
108 <groupId>org.onosproject</groupId>
109 <artifactId>onlab-osgi</artifactId>
110 <version>${onos.version}</version>
111 </dependency>
112
113 <dependency>
114 <groupId>org.onosproject</groupId>
115 <artifactId>onos-incubator-api</artifactId>
116 <version>${onos.version}</version>
117 </dependency>
118
119 <dependency>
120 <groupId>org.onosproject</groupId>
121 <artifactId>onos-api</artifactId>
122 <version>${onos.version}</version>
123 </dependency>
124
125 <dependency>
126 <groupId>org.onosproject</groupId>
127 <artifactId>onos-core-common</artifactId>
128 <version>${onos.version}</version>
129 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -0800130 </dependencies>
alshabib772e1582016-06-01 17:50:05 -0700131
132 <build>
133 <plugins>
134 <plugin>
135 <groupId>org.apache.felix</groupId>
136 <artifactId>maven-bundle-plugin</artifactId>
137 <version>3.0.1</version>
138 <extensions>true</extensions>
139 </plugin>
140 <plugin>
141 <groupId>org.apache.maven.plugins</groupId>
142 <artifactId>maven-compiler-plugin</artifactId>
143 <version>2.5.1</version>
144 <configuration>
145 <source>1.8</source>
146 <target>1.8</target>
147 </configuration>
148 </plugin>
149 <plugin>
150 <groupId>org.apache.felix</groupId>
151 <artifactId>maven-scr-plugin</artifactId>
152 <version>1.21.0</version>
153 <executions>
154 <execution>
155 <id>generate-scr-srcdescriptor</id>
156 <goals>
157 <goal>scr</goal>
158 </goals>
159 </execution>
160 </executions>
161 <configuration>
162 <supportedProjectTypes>
163 <supportedProjectType>bundle</supportedProjectType>
164 <supportedProjectType>war</supportedProjectType>
165 </supportedProjectTypes>
166 </configuration>
167 </plugin>
168 <plugin>
169 <groupId>org.onosproject</groupId>
170 <artifactId>onos-maven-plugin</artifactId>
171 <version>1.7</version>
172 <executions>
173 <execution>
174 <id>cfg</id>
175 <phase>generate-resources</phase>
176 <goals>
177 <goal>cfg</goal>
178 </goals>
179 </execution>
180 <execution>
181 <id>swagger</id>
182 <phase>generate-sources</phase>
183 <goals>
184 <goal>swagger</goal>
185 </goals>
186 </execution>
187 <execution>
188 <id>app</id>
189 <phase>package</phase>
190 <goals>
191 <goal>app</goal>
192 </goals>
193 </execution>
194 </executions>
195 </plugin>
196 </plugins>
197 </build>
198
alshabib3b1eadc2016-02-01 17:57:00 -0800199</project>