blob: 8965c8f7e6ce1414302ad1394c29f9336820f5aa [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>
25 <version>1.6.0-SNAPSHOT</version>
26 <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
34 <description>CORD Multicast application</description>
35
36 <properties>
37 <onos.app.name>org.onosproject.cordmcast</onos.app.name>
alshabib772e1582016-06-01 17:50:05 -070038 <onos.version>1.6.0-SNAPSHOT</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>
Jonathan Harta5ce2b32016-05-16 09:56:10 -070042 <onos.app.requires>org.onosproject.cord-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>
53 <artifactId>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
109 <dependency>
110 <groupId>org.onosproject</groupId>
111 <artifactId>onos-api</artifactId>
112 <version>${onos.version}</version>
113 </dependency>
114
115 <dependency>
116 <groupId>org.onosproject</groupId>
117 <artifactId>onos-core-common</artifactId>
118 <version>${onos.version}</version>
119 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -0800120 </dependencies>
alshabib772e1582016-06-01 17:50:05 -0700121
122 <build>
123 <plugins>
124 <plugin>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>maven-bundle-plugin</artifactId>
127 <version>3.0.1</version>
128 <extensions>true</extensions>
129 </plugin>
130 <plugin>
131 <groupId>org.apache.maven.plugins</groupId>
132 <artifactId>maven-compiler-plugin</artifactId>
133 <version>2.5.1</version>
134 <configuration>
135 <source>1.8</source>
136 <target>1.8</target>
137 </configuration>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.felix</groupId>
141 <artifactId>maven-scr-plugin</artifactId>
142 <version>1.21.0</version>
143 <executions>
144 <execution>
145 <id>generate-scr-srcdescriptor</id>
146 <goals>
147 <goal>scr</goal>
148 </goals>
149 </execution>
150 </executions>
151 <configuration>
152 <supportedProjectTypes>
153 <supportedProjectType>bundle</supportedProjectType>
154 <supportedProjectType>war</supportedProjectType>
155 </supportedProjectTypes>
156 </configuration>
157 </plugin>
158 <plugin>
159 <groupId>org.onosproject</groupId>
160 <artifactId>onos-maven-plugin</artifactId>
161 <version>1.7</version>
162 <executions>
163 <execution>
164 <id>cfg</id>
165 <phase>generate-resources</phase>
166 <goals>
167 <goal>cfg</goal>
168 </goals>
169 </execution>
170 <execution>
171 <id>swagger</id>
172 <phase>generate-sources</phase>
173 <goals>
174 <goal>swagger</goal>
175 </goals>
176 </execution>
177 <execution>
178 <id>app</id>
179 <phase>package</phase>
180 <goals>
181 <goal>app</goal>
182 </goals>
183 </execution>
184 </executions>
185 </plugin>
186 </plugins>
187 </build>
188
alshabib3b1eadc2016-02-01 17:57:00 -0800189</project>