blob: e3dae03b113cc936e6f314a6d53730d565ffa21f [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>
alshabibaa2911e2016-06-01 17:19:46 -070024 <artifactId>onos</artifactId>
alshabib5a41d222016-08-18 14:41:18 -070025 <version>1.7.0-SNAPSHOT</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>
alshabibc4220782016-08-03 14:06:00 -070031 <version>1.1-SNAPSHOT</version>
alshabib69297fd2015-09-23 13:22:33 -070032 <packaging>bundle</packaging>
33
alshabib90532832016-07-09 11:35:13 +020034<!--
alshabibdb6f6c42016-06-02 21:58:31 -070035 <repositories>
36 <repository>
37 <id>oss-staging</id>
38 <name>OSS Staging</name>
39 <url>https://oss.sonatype.org/content/groups/staging</url>
40 </repository>
41 </repositories>
alshabib90532832016-07-09 11:35:13 +020042-->
alshabibdb6f6c42016-06-02 21:58:31 -070043
alshabib69297fd2015-09-23 13:22:33 -070044 <description>Internet Group Message Protocol</description>
45
46 <properties>
alshabibaa2911e2016-06-01 17:19:46 -070047 <onos.app.name>org.opencord.igmp</onos.app.name>
alshabib5a41d222016-08-18 14:41:18 -070048 <onos.version>1.7.0-SNAPSHOT</onos.version>
Simon Hunta2120712016-03-04 21:18:23 -080049 <onos.app.title>IGMP App</onos.app.title>
Jian Lid8015d02016-03-08 09:18:53 -080050 <onos.app.category>Traffic Steering</onos.app.category>
alshabibaa2911e2016-06-01 17:19:46 -070051 <onos.app.url>http://opencord.org</onos.app.url>
Jian Li08b493f2016-01-14 17:22:31 -080052 <onos.app.readme>IGMP implementation.</onos.app.readme>
Jonathan Hart320ca992016-06-10 15:13:11 -070053 <onos.app.requires>org.opencord.config</onos.app.requires>
alshabib69297fd2015-09-23 13:22:33 -070054 </properties>
55
56 <dependencies>
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onos-api</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070060 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070061 </dependency>
62
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onos-cli</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070066 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070067 </dependency>
68
alshabibe9a108d2016-02-01 17:25:00 -080069 <dependency>
alshabib69297fd2015-09-23 13:22:33 -070070 <groupId>org.onosproject</groupId>
71 <artifactId>onlab-osgi</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070072 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070073 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -070074
alshabib69297fd2015-09-23 13:22:33 -070075 <dependency>
alshabib25654bd2016-06-01 17:32:32 -070076 <groupId>org.opencord</groupId>
Jonathan Hart320ca992016-06-10 15:13:11 -070077 <artifactId>cord-config</artifactId>
alshabib25654bd2016-06-01 17:32:32 -070078 <version>${project.version}</version>
Jonathan Hartef770512016-05-06 09:38:07 -070079 </dependency>
80
81 <dependency>
82 <groupId>org.onosproject</groupId>
alshabib69297fd2015-09-23 13:22:33 -070083 <artifactId>onlab-junit</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070084 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070085 <scope>test</scope>
86 </dependency>
87
88 <!-- This is needed by ComponentContext, used for tunable configuration -->
89 <dependency>
90 <groupId>org.osgi</groupId>
91 <artifactId>org.osgi.compendium</artifactId>
92 </dependency>
93
94 <dependency>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>org.apache.felix.scr.annotations</artifactId>
alshabib69297fd2015-09-23 13:22:33 -070097 <scope>provided</scope>
98 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -070099
100 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
101 <dependency>
102 <groupId>org.onosproject</groupId>
103 <artifactId>onlab-misc</artifactId>
104 <version>${onos.version}</version>
105 </dependency>
106
107 <dependency>
108 <groupId>org.onosproject</groupId>
109 <artifactId>onos-incubator-api</artifactId>
110 <version>${onos.version}</version>
111 </dependency>
112
113 <dependency>
114 <groupId>org.onosproject</groupId>
115 <artifactId>onos-core-common</artifactId>
116 <version>${onos.version}</version>
117 </dependency>
118
alshabib69297fd2015-09-23 13:22:33 -0700119
120 </dependencies>
121
alshabibaa2911e2016-06-01 17:19:46 -0700122 <build>
123 <plugins>
124 <plugin>
125 <groupId>org.apache.felix</groupId>
126 <artifactId>maven-bundle-plugin</artifactId>
127 <version>3.0.1</version>
128 <extensions>true</extensions>
129 </plugin>
130 <plugin>
131 <groupId>org.apache.maven.plugins</groupId>
132 <artifactId>maven-compiler-plugin</artifactId>
133 <version>2.5.1</version>
134 <configuration>
135 <source>1.8</source>
136 <target>1.8</target>
137 </configuration>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.felix</groupId>
141 <artifactId>maven-scr-plugin</artifactId>
142 <version>1.21.0</version>
143 <executions>
144 <execution>
145 <id>generate-scr-srcdescriptor</id>
146 <goals>
147 <goal>scr</goal>
148 </goals>
149 </execution>
150 </executions>
151 <configuration>
152 <supportedProjectTypes>
153 <supportedProjectType>bundle</supportedProjectType>
154 <supportedProjectType>war</supportedProjectType>
155 </supportedProjectTypes>
156 </configuration>
157 </plugin>
158 <plugin>
159 <groupId>org.onosproject</groupId>
160 <artifactId>onos-maven-plugin</artifactId>
161 <version>1.7</version>
162 <executions>
163 <execution>
164 <id>cfg</id>
165 <phase>generate-resources</phase>
166 <goals>
167 <goal>cfg</goal>
168 </goals>
169 </execution>
170 <execution>
171 <id>swagger</id>
172 <phase>generate-sources</phase>
173 <goals>
174 <goal>swagger</goal>
175 </goals>
176 </execution>
177 <execution>
178 <id>app</id>
179 <phase>package</phase>
180 <goals>
181 <goal>app</goal>
182 </goals>
183 </execution>
184 </executions>
185 </plugin>
186 </plugins>
187 </build>
188
alshabib69297fd2015-09-23 13:22:33 -0700189</project>