blob: ef2868db0e771859526199f9645bdd7406928479 [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>
31 <version>1.0-SNAPSHOT</version>
alshabib3b1eadc2016-02-01 17:57:00 -080032 <packaging>bundle</packaging>
33
alshabib8afc7012016-06-02 22:01:56 -070034 <!--FIXME remove this one the released bits are out-->
35 <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>
42
alshabib3b1eadc2016-02-01 17:57:00 -080043 <description>CORD Multicast application</description>
44
45 <properties>
alshabib191751a2016-06-01 17:55:26 -070046 <onos.app.name>org.opencord.mcast</onos.app.name>
Charles Chan58473792016-06-26 22:37:17 -070047 <onos.version>1.6.0</onos.version>
Jian Li0f1bd262016-03-08 09:18:53 -080048 <onos.app.category>Traffic Steering</onos.app.category>
Jian Lieddfb972016-03-07 21:26:48 -080049 <onos.app.title>CORD Multicast App</onos.app.title>
Jian Li0f1bd262016-03-08 09:18:53 -080050 <onos.app.url>http://opencord.org</onos.app.url>
alshabibb9d5ccd2016-06-01 17:56:30 -070051 <onos.app.requires>org.opencord.config</onos.app.requires>
alshabib3b1eadc2016-02-01 17:57:00 -080052 </properties>
53
54 <dependencies>
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onos-cli</artifactId>
alshabib772e1582016-06-01 17:50:05 -070058 <version>${onos.version}</version>
alshabib3b1eadc2016-02-01 17:57:00 -080059 </dependency>
60 <dependency>
alshabib772e1582016-06-01 17:50:05 -070061 <groupId>org.opencord</groupId>
Jonathan Hartdca5d682016-06-13 13:50:56 -070062 <artifactId>cord-config</artifactId>
Jonathan Hartc1761bd2016-05-06 15:23:23 -070063 <version>${project.version}</version>
64 </dependency>
65 <dependency>
alshabib3b1eadc2016-02-01 17:57:00 -080066 <groupId>org.apache.karaf.shell</groupId>
67 <artifactId>org.apache.karaf.shell.console</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>com.google.guava</groupId>
71 <artifactId>guava</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onlab-misc</artifactId>
alshabib772e1582016-06-01 17:50:05 -070076 <version>${onos.version}</version>
alshabib3b1eadc2016-02-01 17:57:00 -080077 </dependency>
78 <dependency>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>org.apache.felix.scr</artifactId>
alshabib3b1eadc2016-02-01 17:57:00 -080081 </dependency>
82 <dependency>
83 <groupId>org.osgi</groupId>
84 <artifactId>org.osgi.compendium</artifactId>
85 <version>5.0.0</version>
86 </dependency>
Jonathan Hart28271642016-02-10 16:13:54 -080087 <dependency>
Jian Li46472d72016-03-09 10:52:49 -080088 <groupId>org.glassfish.jersey.core</groupId>
Jonathan Hart28271642016-02-10 16:13:54 -080089 <artifactId>jersey-client</artifactId>
Jian Li46472d72016-03-09 10:52:49 -080090 <version>2.22.2</version>
Jonathan Hart28271642016-02-10 16:13:54 -080091 </dependency>
alshabib09069c92016-02-21 14:49:51 -080092 <dependency>
alshabib772e1582016-06-01 17:50:05 -070093 <groupId>org.opencord</groupId>
94 <artifactId>olt-api</artifactId>
alshabib09069c92016-02-21 14:49:51 -080095 <version>${project.version}</version>
96 </dependency>
alshabib772e1582016-06-01 17:50:05 -070097
98 <dependency>
99 <groupId>org.apache.felix</groupId>
100 <artifactId>org.apache.felix.scr.annotations</artifactId>
101 <scope>provided</scope>
102 </dependency>
103
104 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
105
106 <dependency>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onlab-osgi</artifactId>
109 <version>${onos.version}</version>
110 </dependency>
111
112 <dependency>
113 <groupId>org.onosproject</groupId>
114 <artifactId>onos-incubator-api</artifactId>
115 <version>${onos.version}</version>
116 </dependency>
117
118 <dependency>
119 <groupId>org.onosproject</groupId>
120 <artifactId>onos-api</artifactId>
121 <version>${onos.version}</version>
122 </dependency>
123
124 <dependency>
125 <groupId>org.onosproject</groupId>
126 <artifactId>onos-core-common</artifactId>
127 <version>${onos.version}</version>
128 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -0800129 </dependencies>
alshabib772e1582016-06-01 17:50:05 -0700130
131 <build>
132 <plugins>
133 <plugin>
134 <groupId>org.apache.felix</groupId>
135 <artifactId>maven-bundle-plugin</artifactId>
136 <version>3.0.1</version>
137 <extensions>true</extensions>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-compiler-plugin</artifactId>
142 <version>2.5.1</version>
143 <configuration>
144 <source>1.8</source>
145 <target>1.8</target>
146 </configuration>
147 </plugin>
148 <plugin>
149 <groupId>org.apache.felix</groupId>
150 <artifactId>maven-scr-plugin</artifactId>
151 <version>1.21.0</version>
152 <executions>
153 <execution>
154 <id>generate-scr-srcdescriptor</id>
155 <goals>
156 <goal>scr</goal>
157 </goals>
158 </execution>
159 </executions>
160 <configuration>
161 <supportedProjectTypes>
162 <supportedProjectType>bundle</supportedProjectType>
163 <supportedProjectType>war</supportedProjectType>
164 </supportedProjectTypes>
165 </configuration>
166 </plugin>
167 <plugin>
168 <groupId>org.onosproject</groupId>
169 <artifactId>onos-maven-plugin</artifactId>
170 <version>1.7</version>
171 <executions>
172 <execution>
173 <id>cfg</id>
174 <phase>generate-resources</phase>
175 <goals>
176 <goal>cfg</goal>
177 </goals>
178 </execution>
179 <execution>
180 <id>swagger</id>
181 <phase>generate-sources</phase>
182 <goals>
183 <goal>swagger</goal>
184 </goals>
185 </execution>
186 <execution>
187 <id>app</id>
188 <phase>package</phase>
189 <goals>
190 <goal>app</goal>
191 </goals>
192 </execution>
193 </executions>
194 </plugin>
195 </plugins>
196 </build>
197
alshabib3b1eadc2016-02-01 17:57:00 -0800198</project>