blob: 4b6652e286334a816b0a28a56d986ad1a91766d1 [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>
alshabibe8dac5b2016-06-02 22:14:23 -070025 <version>1.6.0-rc1</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>
31 <version>1.0-SNAPSHOT</version>
alshabib69297fd2015-09-23 13:22:33 -070032 <packaging>bundle</packaging>
33
alshabibdb6f6c42016-06-02 21:58:31 -070034 <!--FIXME remove this one the released bits are out-->
35 <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>
42
alshabib69297fd2015-09-23 13:22:33 -070043 <description>Internet Group Message Protocol</description>
44
45 <properties>
alshabibaa2911e2016-06-01 17:19:46 -070046 <onos.app.name>org.opencord.igmp</onos.app.name>
alshabibe8dac5b2016-06-02 22:14:23 -070047 <onos.version>1.6.0-rc1</onos.version>
Simon Hunta2120712016-03-04 21:18:23 -080048 <onos.app.title>IGMP App</onos.app.title>
Jian Lid8015d02016-03-08 09:18:53 -080049 <onos.app.category>Traffic Steering</onos.app.category>
alshabibaa2911e2016-06-01 17:19:46 -070050 <onos.app.url>http://opencord.org</onos.app.url>
Jian Li08b493f2016-01-14 17:22:31 -080051 <onos.app.readme>IGMP implementation.</onos.app.readme>
Jonathan Hart361ed9d2016-05-16 09:56:10 -070052 <onos.app.requires>org.onosproject.cord-config</onos.app.requires>
alshabib69297fd2015-09-23 13:22:33 -070053 </properties>
54
55 <dependencies>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-api</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070059 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070060 </dependency>
61
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-cli</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070065 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070066 </dependency>
67
alshabibe9a108d2016-02-01 17:25:00 -080068 <dependency>
alshabibaa2911e2016-06-01 17:19:46 -070069 <groupId>org.opencord</groupId>
70 <artifactId>olt-api</artifactId>
alshabibe9a108d2016-02-01 17:25:00 -080071 <version>${project.version}</version>
72 </dependency>
73
alshabib69297fd2015-09-23 13:22:33 -070074 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onlab-osgi</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070077 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070078 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -070079
alshabib69297fd2015-09-23 13:22:33 -070080 <dependency>
alshabib25654bd2016-06-01 17:32:32 -070081 <groupId>org.opencord</groupId>
82 <artifactId>config</artifactId>
83 <version>${project.version}</version>
Jonathan Hartef770512016-05-06 09:38:07 -070084 </dependency>
85
86 <dependency>
87 <groupId>org.onosproject</groupId>
alshabib69297fd2015-09-23 13:22:33 -070088 <artifactId>onlab-junit</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070089 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070090 <scope>test</scope>
91 </dependency>
92
93 <!-- This is needed by ComponentContext, used for tunable configuration -->
94 <dependency>
95 <groupId>org.osgi</groupId>
96 <artifactId>org.osgi.compendium</artifactId>
97 </dependency>
98
99 <dependency>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>org.apache.felix.scr.annotations</artifactId>
alshabib69297fd2015-09-23 13:22:33 -0700102 <scope>provided</scope>
103 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -0700104
105 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
106 <dependency>
107 <groupId>org.onosproject</groupId>
108 <artifactId>onlab-misc</artifactId>
109 <version>${onos.version}</version>
110 </dependency>
111
112 <dependency>
113 <groupId>org.onosproject</groupId>
114 <artifactId>onos-incubator-api</artifactId>
115 <version>${onos.version}</version>
116 </dependency>
117
118 <dependency>
119 <groupId>org.onosproject</groupId>
120 <artifactId>onos-core-common</artifactId>
121 <version>${onos.version}</version>
122 </dependency>
123
alshabib69297fd2015-09-23 13:22:33 -0700124
125 </dependencies>
126
alshabibaa2911e2016-06-01 17:19:46 -0700127 <build>
128 <plugins>
129 <plugin>
130 <groupId>org.apache.felix</groupId>
131 <artifactId>maven-bundle-plugin</artifactId>
132 <version>3.0.1</version>
133 <extensions>true</extensions>
134 </plugin>
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-compiler-plugin</artifactId>
138 <version>2.5.1</version>
139 <configuration>
140 <source>1.8</source>
141 <target>1.8</target>
142 </configuration>
143 </plugin>
144 <plugin>
145 <groupId>org.apache.felix</groupId>
146 <artifactId>maven-scr-plugin</artifactId>
147 <version>1.21.0</version>
148 <executions>
149 <execution>
150 <id>generate-scr-srcdescriptor</id>
151 <goals>
152 <goal>scr</goal>
153 </goals>
154 </execution>
155 </executions>
156 <configuration>
157 <supportedProjectTypes>
158 <supportedProjectType>bundle</supportedProjectType>
159 <supportedProjectType>war</supportedProjectType>
160 </supportedProjectTypes>
161 </configuration>
162 </plugin>
163 <plugin>
164 <groupId>org.onosproject</groupId>
165 <artifactId>onos-maven-plugin</artifactId>
166 <version>1.7</version>
167 <executions>
168 <execution>
169 <id>cfg</id>
170 <phase>generate-resources</phase>
171 <goals>
172 <goal>cfg</goal>
173 </goals>
174 </execution>
175 <execution>
176 <id>swagger</id>
177 <phase>generate-sources</phase>
178 <goals>
179 <goal>swagger</goal>
180 </goals>
181 </execution>
182 <execution>
183 <id>app</id>
184 <phase>package</phase>
185 <goals>
186 <goal>app</goal>
187 </goals>
188 </execution>
189 </executions>
190 </plugin>
191 </plugins>
192 </build>
193
alshabib69297fd2015-09-23 13:22:33 -0700194</project>