blob: 67b5ff11559c0181e9111d963a47afb457af307a [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>
pierbe6208f2019-10-21 09:20:50 +020025 <version>1.13.9-rc4</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>
pierbe6208f2019-10-21 09:20:50 +020031 <version>1.4.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>
pierbe6208f2019-10-21 09:20:50 +020038 <onos.version>1.13.9-rc4</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 Hartf4b27c62018-05-02 17:30:05 -070042 <onos.app.requires>org.opencord.config</onos.app.requires>
Jonathan Hartcd7867f2018-06-07 11:44:44 -070043 <cord.config.version>1.4.0</cord.config.version>
44 <olt.api.version>1.4.0</olt.api.version>
alshabib3b1eadc2016-02-01 17:57:00 -080045 </properties>
46
47 <dependencies>
48 <dependency>
49 <groupId>org.onosproject</groupId>
alshabib772e1582016-06-01 17:50:05 -070050 <artifactId>onlab-osgi</artifactId>
51 <version>${onos.version}</version>
52 </dependency>
alshabib772e1582016-06-01 17:50:05 -070053 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-api</artifactId>
56 <version>${onos.version}</version>
57 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080058 <dependency>
59 <groupId>org.opencord</groupId>
60 <artifactId>cord-config</artifactId>
David K. Bainbridge13001242017-08-10 09:12:26 -070061 <version>${cord.config.version}</version>
Charles Chancde9cfc2016-12-14 16:15:09 -080062 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080063 <dependency>
Esin Karaman73b0e572019-08-28 13:57:30 +000064 <groupId>org.onosproject</groupId>
65 <artifactId>onos-apps-mcast-api</artifactId>
66 <version>${onos.version}</version>
Jonathan Hartf4b27c62018-05-02 17:30:05 -070067 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -080068 </dependencies>
alshabib772e1582016-06-01 17:50:05 -070069
70 <build>
71 <plugins>
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
75 <version>3.0.1</version>
76 <extensions>true</extensions>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-compiler-plugin</artifactId>
81 <version>2.5.1</version>
82 <configuration>
83 <source>1.8</source>
84 <target>1.8</target>
85 </configuration>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>maven-scr-plugin</artifactId>
90 <version>1.21.0</version>
91 <executions>
92 <execution>
93 <id>generate-scr-srcdescriptor</id>
94 <goals>
95 <goal>scr</goal>
96 </goals>
97 </execution>
98 </executions>
99 <configuration>
100 <supportedProjectTypes>
101 <supportedProjectType>bundle</supportedProjectType>
102 <supportedProjectType>war</supportedProjectType>
103 </supportedProjectTypes>
104 </configuration>
105 </plugin>
106 <plugin>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onos-maven-plugin</artifactId>
Jonathan Hartf4b27c62018-05-02 17:30:05 -0700109 <version>1.11</version>
alshabib772e1582016-06-01 17:50:05 -0700110 <executions>
111 <execution>
112 <id>cfg</id>
113 <phase>generate-resources</phase>
114 <goals>
115 <goal>cfg</goal>
116 </goals>
117 </execution>
118 <execution>
119 <id>swagger</id>
120 <phase>generate-sources</phase>
121 <goals>
122 <goal>swagger</goal>
123 </goals>
124 </execution>
125 <execution>
126 <id>app</id>
127 <phase>package</phase>
128 <goals>
129 <goal>app</goal>
130 </goals>
131 </execution>
132 </executions>
133 </plugin>
134 </plugins>
135 </build>
136
Charles Chancde9cfc2016-12-14 16:15:09 -0800137 <repositories>
138 <repository>
139 <id>central</id>
140 <name>Central Repository</name>
141 <url>http://repo.maven.apache.org/maven2</url>
142 <layout>default</layout>
143 <snapshots>
144 <enabled>false</enabled>
145 </snapshots>
146 <releases>
147 <enabled>true</enabled>
148 <updatePolicy>always</updatePolicy>
149 <checksumPolicy>fail</checksumPolicy>
150 </releases>
151 </repository>
152
153 <repository>
154 <id>snapshots</id>
155 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
156 <snapshots>
157 <enabled>true</enabled>
158 <updatePolicy>always</updatePolicy>
159 <checksumPolicy>fail</checksumPolicy>
160 </snapshots>
161 </repository>
162 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -0800163</project>