blob: 53b565ce827c40c4b18b0acb8c3871a3bdbdfcad [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>
alshabib7dafbda2016-09-27 14:25:40 -070025 <version>1.7.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>
alshabibc4220782016-08-03 14:06:00 -070031 <version>1.1-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>
alshabib7dafbda2016-09-27 14:25:40 -070038 <onos.version>1.7.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>
alshabibaa2911e2016-06-01 17:19:46 -070064
alshabib69297fd2015-09-23 13:22:33 -070065 <dependency>
alshabib25654bd2016-06-01 17:32:32 -070066 <groupId>org.opencord</groupId>
Jonathan Hart320ca992016-06-10 15:13:11 -070067 <artifactId>cord-config</artifactId>
alshabib25654bd2016-06-01 17:32:32 -070068 <version>${project.version}</version>
Jonathan Hartef770512016-05-06 09:38:07 -070069 </dependency>
70
71 <dependency>
72 <groupId>org.onosproject</groupId>
alshabib69297fd2015-09-23 13:22:33 -070073 <artifactId>onlab-junit</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070074 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070075 <scope>test</scope>
76 </dependency>
77
78 <!-- This is needed by ComponentContext, used for tunable configuration -->
79 <dependency>
80 <groupId>org.osgi</groupId>
81 <artifactId>org.osgi.compendium</artifactId>
82 </dependency>
83
84 <dependency>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>org.apache.felix.scr.annotations</artifactId>
alshabib69297fd2015-09-23 13:22:33 -070087 <scope>provided</scope>
88 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -070089
90 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
91 <dependency>
92 <groupId>org.onosproject</groupId>
93 <artifactId>onlab-misc</artifactId>
94 <version>${onos.version}</version>
95 </dependency>
96
97 <dependency>
98 <groupId>org.onosproject</groupId>
99 <artifactId>onos-incubator-api</artifactId>
100 <version>${onos.version}</version>
101 </dependency>
alshabib7dafbda2016-09-27 14:25:40 -0700102
103 <dependency>
104 <groupId>org.onosproject</groupId>
105 <artifactId>onos-incubator-net</artifactId>
106 <version>${onos.version}</version>
107 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -0700108
109 <dependency>
110 <groupId>org.onosproject</groupId>
111 <artifactId>onos-core-common</artifactId>
112 <version>${onos.version}</version>
113 </dependency>
114
alshabib69297fd2015-09-23 13:22:33 -0700115
116 </dependencies>
117
alshabibaa2911e2016-06-01 17:19:46 -0700118 <build>
119 <plugins>
120 <plugin>
121 <groupId>org.apache.felix</groupId>
122 <artifactId>maven-bundle-plugin</artifactId>
123 <version>3.0.1</version>
124 <extensions>true</extensions>
125 </plugin>
126 <plugin>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-compiler-plugin</artifactId>
129 <version>2.5.1</version>
130 <configuration>
131 <source>1.8</source>
132 <target>1.8</target>
133 </configuration>
134 </plugin>
135 <plugin>
136 <groupId>org.apache.felix</groupId>
137 <artifactId>maven-scr-plugin</artifactId>
138 <version>1.21.0</version>
139 <executions>
140 <execution>
141 <id>generate-scr-srcdescriptor</id>
142 <goals>
143 <goal>scr</goal>
144 </goals>
145 </execution>
146 </executions>
147 <configuration>
148 <supportedProjectTypes>
149 <supportedProjectType>bundle</supportedProjectType>
150 <supportedProjectType>war</supportedProjectType>
151 </supportedProjectTypes>
152 </configuration>
153 </plugin>
154 <plugin>
155 <groupId>org.onosproject</groupId>
156 <artifactId>onos-maven-plugin</artifactId>
157 <version>1.7</version>
158 <executions>
159 <execution>
160 <id>cfg</id>
161 <phase>generate-resources</phase>
162 <goals>
163 <goal>cfg</goal>
164 </goals>
165 </execution>
166 <execution>
167 <id>swagger</id>
168 <phase>generate-sources</phase>
169 <goals>
170 <goal>swagger</goal>
171 </goals>
172 </execution>
173 <execution>
174 <id>app</id>
175 <phase>package</phase>
176 <goals>
177 <goal>app</goal>
178 </goals>
179 </execution>
180 </executions>
181 </plugin>
182 </plugins>
183 </build>
184
alshabib69297fd2015-09-23 13:22:33 -0700185</project>