blob: 84d000be1056690ee8647917df45fd3921e9ca94 [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>
Esin Karaman09050642020-03-06 14:31:14 +000025 <version>1.13.10</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>
Esin Karaman09050642020-03-06 14:31:14 +000042 <sadis.api.version>3.1.1</sadis.api.version>
alshabib3b1eadc2016-02-01 17:57:00 -080043 </properties>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.onosproject</groupId>
alshabib772e1582016-06-01 17:50:05 -070048 <artifactId>onlab-osgi</artifactId>
49 <version>${onos.version}</version>
50 </dependency>
alshabib772e1582016-06-01 17:50:05 -070051 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 <version>${onos.version}</version>
Sonal Kasliwalee230262020-01-06 10:46:30 +000055 <scope>test</scope>
56 <classifier>tests</classifier>
alshabib772e1582016-06-01 17:50:05 -070057 </dependency>
Charles Chancde9cfc2016-12-14 16:15:09 -080058 <dependency>
59 <groupId>org.opencord</groupId>
Esin Karaman09050642020-03-06 14:31:14 +000060 <artifactId>sadis-api</artifactId>
61 <version>${sadis.api.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>
Sonal Kasliwalee230262020-01-06 10:46:30 +000068 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onlab-junit</artifactId>
71 <version>${onos.version}</version>
72 <scope>test</scope>
73 </dependency>
alshabib3b1eadc2016-02-01 17:57:00 -080074 </dependencies>
alshabib772e1582016-06-01 17:50:05 -070075
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 <version>3.0.1</version>
82 <extensions>true</extensions>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-compiler-plugin</artifactId>
87 <version>2.5.1</version>
88 <configuration>
89 <source>1.8</source>
90 <target>1.8</target>
91 </configuration>
92 </plugin>
93 <plugin>
pier3c7d8312020-01-30 14:37:28 +010094 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-checkstyle-plugin</artifactId>
96 <configuration>
97 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
98 </configuration>
99 </plugin>
100 <plugin>
alshabib772e1582016-06-01 17:50:05 -0700101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-scr-plugin</artifactId>
103 <version>1.21.0</version>
104 <executions>
105 <execution>
106 <id>generate-scr-srcdescriptor</id>
107 <goals>
108 <goal>scr</goal>
109 </goals>
110 </execution>
111 </executions>
112 <configuration>
113 <supportedProjectTypes>
114 <supportedProjectType>bundle</supportedProjectType>
115 <supportedProjectType>war</supportedProjectType>
116 </supportedProjectTypes>
117 </configuration>
118 </plugin>
119 <plugin>
120 <groupId>org.onosproject</groupId>
121 <artifactId>onos-maven-plugin</artifactId>
alshabib772e1582016-06-01 17:50:05 -0700122 <executions>
123 <execution>
124 <id>cfg</id>
125 <phase>generate-resources</phase>
126 <goals>
127 <goal>cfg</goal>
128 </goals>
129 </execution>
130 <execution>
131 <id>swagger</id>
132 <phase>generate-sources</phase>
133 <goals>
134 <goal>swagger</goal>
135 </goals>
136 </execution>
137 <execution>
138 <id>app</id>
139 <phase>package</phase>
140 <goals>
141 <goal>app</goal>
142 </goals>
143 </execution>
144 </executions>
145 </plugin>
146 </plugins>
147 </build>
148
Charles Chancde9cfc2016-12-14 16:15:09 -0800149 <repositories>
150 <repository>
151 <id>central</id>
152 <name>Central Repository</name>
pier3c7d8312020-01-30 14:37:28 +0100153 <url>https://repo.maven.apache.org/maven2</url>
Charles Chancde9cfc2016-12-14 16:15:09 -0800154 <layout>default</layout>
155 <snapshots>
156 <enabled>false</enabled>
157 </snapshots>
158 <releases>
159 <enabled>true</enabled>
160 <updatePolicy>always</updatePolicy>
161 <checksumPolicy>fail</checksumPolicy>
162 </releases>
163 </repository>
164
165 <repository>
166 <id>snapshots</id>
167 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
168 <snapshots>
169 <enabled>true</enabled>
170 <updatePolicy>always</updatePolicy>
171 <checksumPolicy>fail</checksumPolicy>
172 </snapshots>
173 </repository>
174 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -0800175</project>