blob: eb015bcacc3f22e1490bbc699d3e1749a65f8014 [file] [log] [blame]
alshabib69297fd2015-09-23 13:22:33 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor3cd18b32016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
alshabib69297fd2015-09-23 13:22:33 -07004 ~
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/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
Charles Chan8625e772016-12-14 16:15:28 -080024 <artifactId>onos-dependencies</artifactId>
25 <version>1.8.0</version>
alshabibaa2911e2016-06-01 17:19:46 -070026 <relativePath></relativePath>
alshabib69297fd2015-09-23 13:22:33 -070027 </parent>
28
alshabibaa2911e2016-06-01 17:19:46 -070029 <groupId>org.opencord</groupId>
30 <artifactId>igmp</artifactId>
alshabibab4da462017-01-04 21:28:05 -080031 <version>1.2-SNAPSHOT</version>
alshabib69297fd2015-09-23 13:22:33 -070032 <packaging>bundle</packaging>
33
34 <description>Internet Group Message Protocol</description>
35
36 <properties>
alshabibaa2911e2016-06-01 17:19:46 -070037 <onos.app.name>org.opencord.igmp</onos.app.name>
Charles Chan8625e772016-12-14 16:15:28 -080038 <onos.version>1.8.0</onos.version>
Simon Hunta2120712016-03-04 21:18:23 -080039 <onos.app.title>IGMP App</onos.app.title>
Jian Lid8015d02016-03-08 09:18:53 -080040 <onos.app.category>Traffic Steering</onos.app.category>
alshabibaa2911e2016-06-01 17:19:46 -070041 <onos.app.url>http://opencord.org</onos.app.url>
Jian Li08b493f2016-01-14 17:22:31 -080042 <onos.app.readme>IGMP implementation.</onos.app.readme>
Jonathan Hart320ca992016-06-10 15:13:11 -070043 <onos.app.requires>org.opencord.config</onos.app.requires>
alshabib69297fd2015-09-23 13:22:33 -070044 </properties>
45
46 <dependencies>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070050 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070051 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-cli</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070056 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070057 </dependency>
58
alshabibe9a108d2016-02-01 17:25:00 -080059 <dependency>
alshabib69297fd2015-09-23 13:22:33 -070060 <groupId>org.onosproject</groupId>
61 <artifactId>onlab-osgi</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070062 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070063 </dependency>
Jonathan Hartef770512016-05-06 09:38:07 -070064
65 <dependency>
66 <groupId>org.onosproject</groupId>
alshabib69297fd2015-09-23 13:22:33 -070067 <artifactId>onlab-junit</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070068 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070069 <scope>test</scope>
70 </dependency>
71
alshabibaa2911e2016-06-01 17:19:46 -070072 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onlab-misc</artifactId>
75 <version>${onos.version}</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onos-incubator-api</artifactId>
81 <version>${onos.version}</version>
82 </dependency>
alshabib7dafbda2016-09-27 14:25:40 -070083
84 <dependency>
85 <groupId>org.onosproject</groupId>
86 <artifactId>onos-incubator-net</artifactId>
87 <version>${onos.version}</version>
88 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -070089
90 <dependency>
Charles Chan8625e772016-12-14 16:15:28 -080091 <groupId>org.opencord</groupId>
92 <artifactId>cord-config</artifactId>
93 <version>${project.version}</version>
94 </dependency>
alshabib69297fd2015-09-23 13:22:33 -070095 </dependencies>
96
alshabibaa2911e2016-06-01 17:19:46 -070097 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-bundle-plugin</artifactId>
102 <version>3.0.1</version>
103 <extensions>true</extensions>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-compiler-plugin</artifactId>
108 <version>2.5.1</version>
109 <configuration>
110 <source>1.8</source>
111 <target>1.8</target>
112 </configuration>
113 </plugin>
114 <plugin>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>maven-scr-plugin</artifactId>
117 <version>1.21.0</version>
118 <executions>
119 <execution>
120 <id>generate-scr-srcdescriptor</id>
121 <goals>
122 <goal>scr</goal>
123 </goals>
124 </execution>
125 </executions>
126 <configuration>
127 <supportedProjectTypes>
128 <supportedProjectType>bundle</supportedProjectType>
129 <supportedProjectType>war</supportedProjectType>
130 </supportedProjectTypes>
131 </configuration>
132 </plugin>
133 <plugin>
134 <groupId>org.onosproject</groupId>
135 <artifactId>onos-maven-plugin</artifactId>
136 <version>1.7</version>
137 <executions>
138 <execution>
139 <id>cfg</id>
140 <phase>generate-resources</phase>
141 <goals>
142 <goal>cfg</goal>
143 </goals>
144 </execution>
145 <execution>
146 <id>swagger</id>
147 <phase>generate-sources</phase>
148 <goals>
149 <goal>swagger</goal>
150 </goals>
151 </execution>
152 <execution>
153 <id>app</id>
154 <phase>package</phase>
155 <goals>
156 <goal>app</goal>
157 </goals>
158 </execution>
159 </executions>
160 </plugin>
161 </plugins>
162 </build>
163
Charles Chan8625e772016-12-14 16:15:28 -0800164 <repositories>
165 <repository>
166 <id>central</id>
167 <name>Central Repository</name>
168 <url>http://repo.maven.apache.org/maven2</url>
169 <layout>default</layout>
170 <snapshots>
171 <enabled>false</enabled>
172 </snapshots>
173 <releases>
174 <enabled>true</enabled>
175 <updatePolicy>always</updatePolicy>
176 <checksumPolicy>fail</checksumPolicy>
177 </releases>
178 </repository>
179
180 <repository>
181 <id>snapshots</id>
182 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
183 <snapshots>
184 <enabled>true</enabled>
185 <updatePolicy>always</updatePolicy>
186 <checksumPolicy>fail</checksumPolicy>
187 </snapshots>
188 </repository>
189 </repositories>
alshabib69297fd2015-09-23 13:22:33 -0700190</project>