blob: 9fb771bb26864b24a12b2e84df1aaebb410deaca [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 Karaman39b24852019-08-28 13:57:30 +000025 <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>
Jenkinsbe908f52018-06-07 20:54:33 +000031 <version>1.5.0-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>
Esin Karaman39b24852019-08-28 13:57:30 +000038 <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 Karaman39b24852019-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>
Esin Karaman39b24852019-08-28 13:57:30 +000075 <version>4.1.0</version>
alshabib772e1582016-06-01 17:50:05 -070076 <extensions>true</extensions>
Esin Karaman39b24852019-08-28 13:57:30 +000077 <inherited>true</inherited>
alshabib772e1582016-06-01 17:50:05 -070078 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-compiler-plugin</artifactId>
Esin Karaman39b24852019-08-28 13:57:30 +000082 <version>3.8.0</version>
alshabib772e1582016-06-01 17:50:05 -070083 <configuration>
Esin Karaman39b24852019-08-28 13:57:30 +000084 <release>11</release>
alshabib772e1582016-06-01 17:50:05 -070085 </configuration>
86 </plugin>
87 <plugin>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onos-maven-plugin</artifactId>
Jonathan Hartf4b27c62018-05-02 17:30:05 -070090 <version>1.11</version>
alshabib772e1582016-06-01 17:50:05 -070091 <executions>
92 <execution>
93 <id>cfg</id>
94 <phase>generate-resources</phase>
95 <goals>
96 <goal>cfg</goal>
97 </goals>
98 </execution>
99 <execution>
100 <id>swagger</id>
101 <phase>generate-sources</phase>
102 <goals>
103 <goal>swagger</goal>
104 </goals>
105 </execution>
106 <execution>
107 <id>app</id>
108 <phase>package</phase>
109 <goals>
110 <goal>app</goal>
111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115 </plugins>
116 </build>
117
Charles Chancde9cfc2016-12-14 16:15:09 -0800118 <repositories>
119 <repository>
120 <id>central</id>
121 <name>Central Repository</name>
122 <url>http://repo.maven.apache.org/maven2</url>
123 <layout>default</layout>
124 <snapshots>
125 <enabled>false</enabled>
126 </snapshots>
127 <releases>
128 <enabled>true</enabled>
129 <updatePolicy>always</updatePolicy>
130 <checksumPolicy>fail</checksumPolicy>
131 </releases>
132 </repository>
133
134 <repository>
135 <id>snapshots</id>
136 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
137 <snapshots>
138 <enabled>true</enabled>
139 <updatePolicy>always</updatePolicy>
140 <checksumPolicy>fail</checksumPolicy>
141 </snapshots>
142 </repository>
143 </repositories>
alshabib3b1eadc2016-02-01 17:57:00 -0800144</project>