blob: 3d2fb6cd2df84c65c36c501877d029b5842666fc [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>
25 <version>1.6.0-SNAPSHOT</version>
26 <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
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>
38 <onos.version>1.6.0-SNAPSHOT</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 Hart361ed9d2016-05-16 09:56:10 -070043 <onos.app.requires>org.onosproject.cord-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>
alshabibaa2911e2016-06-01 17:19:46 -070060 <groupId>org.opencord</groupId>
61 <artifactId>olt-api</artifactId>
alshabibe9a108d2016-02-01 17:25:00 -080062 <version>${project.version}</version>
63 </dependency>
64
alshabib69297fd2015-09-23 13:22:33 -070065 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onlab-osgi</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070068 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070069 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -070070
71 <!-- FIXME when cord-config is pulled to opencord -->
alshabib69297fd2015-09-23 13:22:33 -070072 <dependency>
73 <groupId>org.onosproject</groupId>
Jonathan Hartef770512016-05-06 09:38:07 -070074 <artifactId>onos-cord-config</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070075 <version>${onos.version}</version>
Jonathan Hartef770512016-05-06 09:38:07 -070076 </dependency>
77
78 <dependency>
79 <groupId>org.onosproject</groupId>
alshabib69297fd2015-09-23 13:22:33 -070080 <artifactId>onlab-junit</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070081 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070082 <scope>test</scope>
83 </dependency>
84
85 <!-- This is needed by ComponentContext, used for tunable configuration -->
86 <dependency>
87 <groupId>org.osgi</groupId>
88 <artifactId>org.osgi.compendium</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>org.apache.felix.scr.annotations</artifactId>
alshabib69297fd2015-09-23 13:22:33 -070094 <scope>provided</scope>
95 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -070096
97 <!-- TODO FIX ONOS ROOT POM to split thirdparty and onos dependencies -->
98 <dependency>
99 <groupId>org.onosproject</groupId>
100 <artifactId>onlab-misc</artifactId>
101 <version>${onos.version}</version>
102 </dependency>
103
104 <dependency>
105 <groupId>org.onosproject</groupId>
106 <artifactId>onos-incubator-api</artifactId>
107 <version>${onos.version}</version>
108 </dependency>
109
110 <dependency>
111 <groupId>org.onosproject</groupId>
112 <artifactId>onos-core-common</artifactId>
113 <version>${onos.version}</version>
114 </dependency>
115
alshabib69297fd2015-09-23 13:22:33 -0700116
117 </dependencies>
118
alshabibaa2911e2016-06-01 17:19:46 -0700119 <build>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.felix</groupId>
123 <artifactId>maven-bundle-plugin</artifactId>
124 <version>3.0.1</version>
125 <extensions>true</extensions>
126 </plugin>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-compiler-plugin</artifactId>
130 <version>2.5.1</version>
131 <configuration>
132 <source>1.8</source>
133 <target>1.8</target>
134 </configuration>
135 </plugin>
136 <plugin>
137 <groupId>org.apache.felix</groupId>
138 <artifactId>maven-scr-plugin</artifactId>
139 <version>1.21.0</version>
140 <executions>
141 <execution>
142 <id>generate-scr-srcdescriptor</id>
143 <goals>
144 <goal>scr</goal>
145 </goals>
146 </execution>
147 </executions>
148 <configuration>
149 <supportedProjectTypes>
150 <supportedProjectType>bundle</supportedProjectType>
151 <supportedProjectType>war</supportedProjectType>
152 </supportedProjectTypes>
153 </configuration>
154 </plugin>
155 <plugin>
156 <groupId>org.onosproject</groupId>
157 <artifactId>onos-maven-plugin</artifactId>
158 <version>1.7</version>
159 <executions>
160 <execution>
161 <id>cfg</id>
162 <phase>generate-resources</phase>
163 <goals>
164 <goal>cfg</goal>
165 </goals>
166 </execution>
167 <execution>
168 <id>swagger</id>
169 <phase>generate-sources</phase>
170 <goals>
171 <goal>swagger</goal>
172 </goals>
173 </execution>
174 <execution>
175 <id>app</id>
176 <phase>package</phase>
177 <goals>
178 <goal>app</goal>
179 </goals>
180 </execution>
181 </executions>
182 </plugin>
183 </plugins>
184 </build>
185
alshabib69297fd2015-09-23 13:22:33 -0700186</project>