blob: 2015726592130beff740063c7289f4e7deb4edd2 [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
alshabib5e757292016-08-26 10:57:16 -0700122 <repositories>
123 <repository>
124 <id>central</id>
125 <name>Central Repository</name>
126 <url>http://repo.maven.apache.org/maven2</url>
127 <layout>default</layout>
128 <snapshots>
129 <enabled>true</enabled>
130 </snapshots>
131 <releases>
132 <enabled>true</enabled>
133 <updatePolicy>never</updatePolicy>
134 <checksumPolicy>fail</checksumPolicy>
135 </releases>
136 </repository>
137
138 <repository>
139 <id>snapshots</id>
140 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
141 <snapshots>
142 <enabled>true</enabled>
143 <updatePolicy>never</updatePolicy>
144 <checksumPolicy>fail</checksumPolicy>
145 </snapshots>
146 </repository>
147 </repositories>
148
alshabibaa2911e2016-06-01 17:19:46 -0700149 <build>
150 <plugins>
151 <plugin>
152 <groupId>org.apache.felix</groupId>
153 <artifactId>maven-bundle-plugin</artifactId>
154 <version>3.0.1</version>
155 <extensions>true</extensions>
156 </plugin>
157 <plugin>
158 <groupId>org.apache.maven.plugins</groupId>
159 <artifactId>maven-compiler-plugin</artifactId>
160 <version>2.5.1</version>
161 <configuration>
162 <source>1.8</source>
163 <target>1.8</target>
164 </configuration>
165 </plugin>
166 <plugin>
167 <groupId>org.apache.felix</groupId>
168 <artifactId>maven-scr-plugin</artifactId>
169 <version>1.21.0</version>
170 <executions>
171 <execution>
172 <id>generate-scr-srcdescriptor</id>
173 <goals>
174 <goal>scr</goal>
175 </goals>
176 </execution>
177 </executions>
178 <configuration>
179 <supportedProjectTypes>
180 <supportedProjectType>bundle</supportedProjectType>
181 <supportedProjectType>war</supportedProjectType>
182 </supportedProjectTypes>
183 </configuration>
184 </plugin>
185 <plugin>
186 <groupId>org.onosproject</groupId>
187 <artifactId>onos-maven-plugin</artifactId>
188 <version>1.7</version>
189 <executions>
190 <execution>
191 <id>cfg</id>
192 <phase>generate-resources</phase>
193 <goals>
194 <goal>cfg</goal>
195 </goals>
196 </execution>
197 <execution>
198 <id>swagger</id>
199 <phase>generate-sources</phase>
200 <goals>
201 <goal>swagger</goal>
202 </goals>
203 </execution>
204 <execution>
205 <id>app</id>
206 <phase>package</phase>
207 <goals>
208 <goal>app</goal>
209 </goals>
210 </execution>
211 </executions>
212 </plugin>
213 </plugins>
214 </build>
215
alshabib69297fd2015-09-23 13:22:33 -0700216</project>