blob: 0f2ef3861e3f791f6be26a29bef47f81919be72a [file] [log] [blame]
alshabib3b1eadc2016-02-01 17:57:00 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connorcf85aa82017-08-03 22:46:01 -07003 ~ Copyright 2016-present Open Networking Foundation
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>
Charles Chancde9cfc2016-12-14 16:15:09 -080024 <artifactId>onos-dependencies</artifactId>
David K. Bainbridge9b020672017-09-07 14:00:30 -070025 <version>1.10.6</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>
Jonathan Hart91f0f192017-09-12 09:40:43 -070031 <version>1.3.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>
David K. Bainbridge9b020672017-09-07 14:00:30 -070038 <onos.version>1.10.6</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>
David K. Bainbridge13001242017-08-10 09:12:26 -070042 <onos.app.requires>org.opencord.config</onos.app.requires>
Jonathan Hart91f0f192017-09-12 09:40:43 -070043 <cord.config.version>1.3.1-SNAPSHOT</cord.config.version>
44 <olt.api.version>1.3.1-SNAPSHOT</olt.api.version>
David K. Bainbridge23f98ba2017-08-17 09:54:40 -070045 <!-- TODO onos-build-conf.version can be dropped when onos.version > 1.10.3 -->
46 <onos-build-conf.version>1.10.3-onf</onos-build-conf.version>
alshabib3b1eadc2016-02-01 17:57:00 -080047 </properties>
48
49 <dependencies>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-cli</artifactId>
alshabib772e1582016-06-01 17:50:05 -070053 <version>${onos.version}</version>
alshabib3b1eadc2016-02-01 17:57:00 -080054 </dependency>
alshabib772e1582016-06-01 17:50:05 -070055
56 <dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080057 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-misc</artifactId>
59 <version>${onos.version}</version>
alshabib772e1582016-06-01 17:50:05 -070060 </dependency>
61
alshabib772e1582016-06-01 17:50:05 -070062 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onlab-osgi</artifactId>
65 <version>${onos.version}</version>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-incubator-api</artifactId>
71 <version>${onos.version}</version>
72 </dependency>
73
alshabibacad6362016-09-27 14:25:47 -070074 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-incubator-net</artifactId>
77 <version>${onos.version}</version>
78 </dependency>
79
alshabib772e1582016-06-01 17:50:05 -070080 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-api</artifactId>
83 <version>${onos.version}</version>
84 </dependency>
85
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onos-core-common</artifactId>
89 <version>${onos.version}</version>
90 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080091
92 <dependency>
93 <groupId>org.opencord</groupId>
94 <artifactId>cord-config</artifactId>
David K. Bainbridge13001242017-08-10 09:12:26 -070095 <version>${cord.config.version}</version>
Charles Chancde9cfc2016-12-14 16:15:09 -080096 </dependency>
97
98 <dependency>
99 <groupId>org.opencord</groupId>
100 <artifactId>olt-api</artifactId>
David K. Bainbridge13001242017-08-10 09:12:26 -0700101 <version>${olt.api.version}</version>
Charles Chancde9cfc2016-12-14 16:15:09 -0800102 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -0800103 </dependencies>
alshabib772e1582016-06-01 17:50:05 -0700104
105 <build>
106 <plugins>
107 <plugin>
108 <groupId>org.apache.felix</groupId>
109 <artifactId>maven-bundle-plugin</artifactId>
110 <version>3.0.1</version>
111 <extensions>true</extensions>
112 </plugin>
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-compiler-plugin</artifactId>
116 <version>2.5.1</version>
117 <configuration>
118 <source>1.8</source>
119 <target>1.8</target>
120 </configuration>
121 </plugin>
122 <plugin>
123 <groupId>org.apache.felix</groupId>
124 <artifactId>maven-scr-plugin</artifactId>
125 <version>1.21.0</version>
126 <executions>
127 <execution>
128 <id>generate-scr-srcdescriptor</id>
129 <goals>
130 <goal>scr</goal>
131 </goals>
132 </execution>
133 </executions>
134 <configuration>
135 <supportedProjectTypes>
136 <supportedProjectType>bundle</supportedProjectType>
137 <supportedProjectType>war</supportedProjectType>
138 </supportedProjectTypes>
139 </configuration>
140 </plugin>
141 <plugin>
142 <groupId>org.onosproject</groupId>
143 <artifactId>onos-maven-plugin</artifactId>
144 <version>1.7</version>
145 <executions>
146 <execution>
147 <id>cfg</id>
148 <phase>generate-resources</phase>
149 <goals>
150 <goal>cfg</goal>
151 </goals>
152 </execution>
153 <execution>
154 <id>swagger</id>
155 <phase>generate-sources</phase>
156 <goals>
157 <goal>swagger</goal>
158 </goals>
159 </execution>
160 <execution>
161 <id>app</id>
162 <phase>package</phase>
163 <goals>
164 <goal>app</goal>
165 </goals>
166 </execution>
167 </executions>
168 </plugin>
169 </plugins>
170 </build>
171
Charles Chancde9cfc2016-12-14 16:15:09 -0800172 <repositories>
173 <repository>
174 <id>central</id>
175 <name>Central Repository</name>
176 <url>http://repo.maven.apache.org/maven2</url>
177 <layout>default</layout>
178 <snapshots>
179 <enabled>false</enabled>
180 </snapshots>
181 <releases>
182 <enabled>true</enabled>
183 <updatePolicy>always</updatePolicy>
184 <checksumPolicy>fail</checksumPolicy>
185 </releases>
186 </repository>
187
188 <repository>
189 <id>snapshots</id>
190 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
191 <snapshots>
192 <enabled>true</enabled>
193 <updatePolicy>always</updatePolicy>
194 <checksumPolicy>fail</checksumPolicy>
195 </snapshots>
196 </repository>
197 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -0800198</project>