blob: 0b19b6c8b1f395d954b089ef939a932f000e47ec [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>
pier3c7d8312020-01-30 14:37:28 +010025 <version>1.13.10-rc2</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>
pier3c7d8312020-01-30 14:37:28 +010038 <onos.version>1.13.10-rc2</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>
pier3c7d8312020-01-30 14:37:28 +010043 <cord.config.version>1.5.0-SNAPSHOT</cord.config.version>
44 <olt.api.version>3.1.0-SNAPSHOT</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>
Sonal Kasliwalee230262020-01-06 10:46:30 +000057 <scope>test</scope>
58 <classifier>tests</classifier>
alshabib772e1582016-06-01 17:50:05 -070059 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080060 <dependency>
61 <groupId>org.opencord</groupId>
62 <artifactId>cord-config</artifactId>
David K. Bainbridge13001242017-08-10 09:12:26 -070063 <version>${cord.config.version}</version>
Charles Chancde9cfc2016-12-14 16:15:09 -080064 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080065 <dependency>
Esin Karaman73b0e572019-08-28 13:57:30 +000066 <groupId>org.onosproject</groupId>
67 <artifactId>onos-apps-mcast-api</artifactId>
68 <version>${onos.version}</version>
Jonathan Hartf4b27c62018-05-02 17:30:05 -070069 </dependency>
Sonal Kasliwalee230262020-01-06 10:46:30 +000070 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onlab-junit</artifactId>
73 <version>${onos.version}</version>
74 <scope>test</scope>
75 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -080076 </dependencies>
alshabib772e1582016-06-01 17:50:05 -070077
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-bundle-plugin</artifactId>
83 <version>3.0.1</version>
84 <extensions>true</extensions>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-compiler-plugin</artifactId>
89 <version>2.5.1</version>
90 <configuration>
91 <source>1.8</source>
92 <target>1.8</target>
93 </configuration>
94 </plugin>
95 <plugin>
pier3c7d8312020-01-30 14:37:28 +010096 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-checkstyle-plugin</artifactId>
98 <configuration>
99 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
100 </configuration>
101 </plugin>
102 <plugin>
alshabib772e1582016-06-01 17:50:05 -0700103 <groupId>org.apache.felix</groupId>
104 <artifactId>maven-scr-plugin</artifactId>
105 <version>1.21.0</version>
106 <executions>
107 <execution>
108 <id>generate-scr-srcdescriptor</id>
109 <goals>
110 <goal>scr</goal>
111 </goals>
112 </execution>
113 </executions>
114 <configuration>
115 <supportedProjectTypes>
116 <supportedProjectType>bundle</supportedProjectType>
117 <supportedProjectType>war</supportedProjectType>
118 </supportedProjectTypes>
119 </configuration>
120 </plugin>
121 <plugin>
122 <groupId>org.onosproject</groupId>
123 <artifactId>onos-maven-plugin</artifactId>
alshabib772e1582016-06-01 17:50:05 -0700124 <executions>
125 <execution>
126 <id>cfg</id>
127 <phase>generate-resources</phase>
128 <goals>
129 <goal>cfg</goal>
130 </goals>
131 </execution>
132 <execution>
133 <id>swagger</id>
134 <phase>generate-sources</phase>
135 <goals>
136 <goal>swagger</goal>
137 </goals>
138 </execution>
139 <execution>
140 <id>app</id>
141 <phase>package</phase>
142 <goals>
143 <goal>app</goal>
144 </goals>
145 </execution>
146 </executions>
147 </plugin>
148 </plugins>
149 </build>
150
Charles Chancde9cfc2016-12-14 16:15:09 -0800151 <repositories>
152 <repository>
153 <id>central</id>
154 <name>Central Repository</name>
pier3c7d8312020-01-30 14:37:28 +0100155 <url>https://repo.maven.apache.org/maven2</url>
Charles Chancde9cfc2016-12-14 16:15:09 -0800156 <layout>default</layout>
157 <snapshots>
158 <enabled>false</enabled>
159 </snapshots>
160 <releases>
161 <enabled>true</enabled>
162 <updatePolicy>always</updatePolicy>
163 <checksumPolicy>fail</checksumPolicy>
164 </releases>
165 </repository>
166
167 <repository>
168 <id>snapshots</id>
169 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
170 <snapshots>
171 <enabled>true</enabled>
172 <updatePolicy>always</updatePolicy>
173 <checksumPolicy>fail</checksumPolicy>
174 </snapshots>
175 </repository>
176 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -0800177</project>