blob: 078fed2ea1926643cbd3c5c010cb6d71ee4e4a69 [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>
alshabibacad6362016-09-27 14:25:47 -070025 <version>1.7.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>
alshabib7f115882016-08-03 14:06:00 -070031 <version>1.1-SNAPSHOT</version>
alshabib3b1eadc2016-02-01 17:57:00 -080032 <packaging>bundle</packaging>
33
34 <description>CORD Multicast application</description>
35
36 <properties>
alshabib191751a2016-06-01 17:55:26 -070037 <onos.app.name>org.opencord.mcast</onos.app.name>
alshabibacad6362016-09-27 14:25:47 -070038 <onos.version>1.7.0</onos.version>
Jian Li0f1bd262016-03-08 09:18:53 -080039 <onos.app.category>Traffic Steering</onos.app.category>
Jian Lieddfb972016-03-07 21:26:48 -080040 <onos.app.title>CORD Multicast App</onos.app.title>
Jian Li0f1bd262016-03-08 09:18:53 -080041 <onos.app.url>http://opencord.org</onos.app.url>
alshabibb9d5ccd2016-06-01 17:56:30 -070042 <onos.app.requires>org.opencord.config</onos.app.requires>
alshabib3b1eadc2016-02-01 17:57:00 -080043 </properties>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-cli</artifactId>
alshabib772e1582016-06-01 17:50:05 -070049 <version>${onos.version}</version>
alshabib3b1eadc2016-02-01 17:57:00 -080050 </dependency>
51 <dependency>
alshabib772e1582016-06-01 17:50:05 -070052 <groupId>org.opencord</groupId>
Jonathan Hartdca5d682016-06-13 13:50:56 -070053 <artifactId>cord-config</artifactId>
Jonathan Hartc1761bd2016-05-06 15:23:23 -070054 <version>${project.version}</version>
55 </dependency>
56 <dependency>
alshabib3b1eadc2016-02-01 17:57:00 -080057 <groupId>org.apache.karaf.shell</groupId>
58 <artifactId>org.apache.karaf.shell.console</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>com.google.guava</groupId>
62 <artifactId>guava</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-misc</artifactId>
alshabib772e1582016-06-01 17:50:05 -070067 <version>${onos.version}</version>
alshabib3b1eadc2016-02-01 17:57:00 -080068 </dependency>
69 <dependency>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>org.apache.felix.scr</artifactId>
alshabib3b1eadc2016-02-01 17:57:00 -080072 </dependency>
73 <dependency>
74 <groupId>org.osgi</groupId>
75 <artifactId>org.osgi.compendium</artifactId>
76 <version>5.0.0</version>
77 </dependency>
Jonathan Hart28271642016-02-10 16:13:54 -080078 <dependency>
Jian Li46472d72016-03-09 10:52:49 -080079 <groupId>org.glassfish.jersey.core</groupId>
Jonathan Hart28271642016-02-10 16:13:54 -080080 <artifactId>jersey-client</artifactId>
Jian Li46472d72016-03-09 10:52:49 -080081 <version>2.22.2</version>
Jonathan Hart28271642016-02-10 16:13:54 -080082 </dependency>
alshabib09069c92016-02-21 14:49:51 -080083 <dependency>
alshabib772e1582016-06-01 17:50:05 -070084 <groupId>org.opencord</groupId>
85 <artifactId>olt-api</artifactId>
alshabib09069c92016-02-21 14:49:51 -080086 <version>${project.version}</version>
87 </dependency>
alshabib772e1582016-06-01 17:50:05 -070088
89 <dependency>
90 <groupId>org.apache.felix</groupId>
91 <artifactId>org.apache.felix.scr.annotations</artifactId>
92 <scope>provided</scope>
93 </dependency>
94
95 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
96
97 <dependency>
98 <groupId>org.onosproject</groupId>
99 <artifactId>onlab-osgi</artifactId>
100 <version>${onos.version}</version>
101 </dependency>
102
103 <dependency>
104 <groupId>org.onosproject</groupId>
105 <artifactId>onos-incubator-api</artifactId>
106 <version>${onos.version}</version>
107 </dependency>
108
alshabibacad6362016-09-27 14:25:47 -0700109 <dependency>
110 <groupId>org.onosproject</groupId>
111 <artifactId>onos-incubator-net</artifactId>
112 <version>${onos.version}</version>
113 </dependency>
114
alshabib772e1582016-06-01 17:50:05 -0700115 <dependency>
116 <groupId>org.onosproject</groupId>
117 <artifactId>onos-api</artifactId>
118 <version>${onos.version}</version>
119 </dependency>
120
121 <dependency>
122 <groupId>org.onosproject</groupId>
123 <artifactId>onos-core-common</artifactId>
124 <version>${onos.version}</version>
125 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -0800126 </dependencies>
alshabib772e1582016-06-01 17:50:05 -0700127
128 <build>
129 <plugins>
130 <plugin>
131 <groupId>org.apache.felix</groupId>
132 <artifactId>maven-bundle-plugin</artifactId>
133 <version>3.0.1</version>
134 <extensions>true</extensions>
135 </plugin>
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-compiler-plugin</artifactId>
139 <version>2.5.1</version>
140 <configuration>
141 <source>1.8</source>
142 <target>1.8</target>
143 </configuration>
144 </plugin>
145 <plugin>
146 <groupId>org.apache.felix</groupId>
147 <artifactId>maven-scr-plugin</artifactId>
148 <version>1.21.0</version>
149 <executions>
150 <execution>
151 <id>generate-scr-srcdescriptor</id>
152 <goals>
153 <goal>scr</goal>
154 </goals>
155 </execution>
156 </executions>
157 <configuration>
158 <supportedProjectTypes>
159 <supportedProjectType>bundle</supportedProjectType>
160 <supportedProjectType>war</supportedProjectType>
161 </supportedProjectTypes>
162 </configuration>
163 </plugin>
164 <plugin>
165 <groupId>org.onosproject</groupId>
166 <artifactId>onos-maven-plugin</artifactId>
167 <version>1.7</version>
168 <executions>
169 <execution>
170 <id>cfg</id>
171 <phase>generate-resources</phase>
172 <goals>
173 <goal>cfg</goal>
174 </goals>
175 </execution>
176 <execution>
177 <id>swagger</id>
178 <phase>generate-sources</phase>
179 <goals>
180 <goal>swagger</goal>
181 </goals>
182 </execution>
183 <execution>
184 <id>app</id>
185 <phase>package</phase>
186 <goals>
187 <goal>app</goal>
188 </goals>
189 </execution>
190 </executions>
191 </plugin>
192 </plugins>
193 </build>
194
alshabib3b1eadc2016-02-01 17:57:00 -0800195</project>