blob: 4d8017e2e9494462e4d6d5e33f838b6172093f7e [file] [log] [blame]
alshabib69297fd2015-09-23 13:22:33 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora64b27d2017-08-03 22:45:57 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
Charles Chan8625e772016-12-14 16:15:28 -080024 <artifactId>onos-dependencies</artifactId>
David K. Bainbridge307ccb32017-08-15 15:25:48 -070025 <version>1.8.9</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>
David K. Bainbridge307ccb32017-08-15 15:25:48 -070031 <version>1.2.0</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>
David K. Bainbridge307ccb32017-08-15 15:25:48 -070038 <onos.version>1.8.9</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>
David K. Bainbridge70525c92017-08-10 09:12:11 -070043 <onos.app.requires>org.opencord.config</onos.app.requires>
David K. Bainbridge307ccb32017-08-15 15:25:48 -070044 <cord.config.version>1.2.0</cord.config.version>
alshabib69297fd2015-09-23 13:22:33 -070045 </properties>
46
47 <dependencies>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-api</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070051 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070052 </dependency>
53
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-cli</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070057 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070058 </dependency>
59
alshabibe9a108d2016-02-01 17:25:00 -080060 <dependency>
alshabib69297fd2015-09-23 13:22:33 -070061 <groupId>org.onosproject</groupId>
62 <artifactId>onlab-osgi</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070063 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070064 </dependency>
Jonathan Hartef770512016-05-06 09:38:07 -070065
66 <dependency>
67 <groupId>org.onosproject</groupId>
alshabib69297fd2015-09-23 13:22:33 -070068 <artifactId>onlab-junit</artifactId>
alshabibaa2911e2016-06-01 17:19:46 -070069 <version>${onos.version}</version>
alshabib69297fd2015-09-23 13:22:33 -070070 <scope>test</scope>
71 </dependency>
72
alshabibaa2911e2016-06-01 17:19:46 -070073 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onlab-misc</artifactId>
76 <version>${onos.version}</version>
77 </dependency>
78
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onos-incubator-api</artifactId>
82 <version>${onos.version}</version>
83 </dependency>
alshabib7dafbda2016-09-27 14:25:40 -070084
85 <dependency>
86 <groupId>org.onosproject</groupId>
87 <artifactId>onos-incubator-net</artifactId>
88 <version>${onos.version}</version>
89 </dependency>
alshabibaa2911e2016-06-01 17:19:46 -070090
91 <dependency>
Charles Chan8625e772016-12-14 16:15:28 -080092 <groupId>org.opencord</groupId>
93 <artifactId>cord-config</artifactId>
David K. Bainbridge70525c92017-08-10 09:12:11 -070094 <version>${cord.config.version}</version>
Charles Chan8625e772016-12-14 16:15:28 -080095 </dependency>
alshabib69297fd2015-09-23 13:22:33 -070096 </dependencies>
97
alshabibaa2911e2016-06-01 17:19:46 -070098 <build>
99 <plugins>
100 <plugin>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-bundle-plugin</artifactId>
103 <version>3.0.1</version>
104 <extensions>true</extensions>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-compiler-plugin</artifactId>
109 <version>2.5.1</version>
110 <configuration>
111 <source>1.8</source>
112 <target>1.8</target>
113 </configuration>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.felix</groupId>
117 <artifactId>maven-scr-plugin</artifactId>
118 <version>1.21.0</version>
119 <executions>
120 <execution>
121 <id>generate-scr-srcdescriptor</id>
122 <goals>
123 <goal>scr</goal>
124 </goals>
125 </execution>
126 </executions>
127 <configuration>
128 <supportedProjectTypes>
129 <supportedProjectType>bundle</supportedProjectType>
130 <supportedProjectType>war</supportedProjectType>
131 </supportedProjectTypes>
132 </configuration>
133 </plugin>
134 <plugin>
135 <groupId>org.onosproject</groupId>
136 <artifactId>onos-maven-plugin</artifactId>
137 <version>1.7</version>
138 <executions>
139 <execution>
140 <id>cfg</id>
141 <phase>generate-resources</phase>
142 <goals>
143 <goal>cfg</goal>
144 </goals>
145 </execution>
146 <execution>
147 <id>swagger</id>
148 <phase>generate-sources</phase>
149 <goals>
150 <goal>swagger</goal>
151 </goals>
152 </execution>
153 <execution>
154 <id>app</id>
155 <phase>package</phase>
156 <goals>
157 <goal>app</goal>
158 </goals>
159 </execution>
160 </executions>
161 </plugin>
162 </plugins>
163 </build>
164
Charles Chan8625e772016-12-14 16:15:28 -0800165 <repositories>
166 <repository>
167 <id>central</id>
168 <name>Central Repository</name>
169 <url>http://repo.maven.apache.org/maven2</url>
170 <layout>default</layout>
171 <snapshots>
172 <enabled>false</enabled>
173 </snapshots>
174 <releases>
175 <enabled>true</enabled>
176 <updatePolicy>always</updatePolicy>
177 <checksumPolicy>fail</checksumPolicy>
178 </releases>
179 </repository>
180
181 <repository>
182 <id>snapshots</id>
183 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
184 <snapshots>
185 <enabled>true</enabled>
186 <updatePolicy>always</updatePolicy>
187 <checksumPolicy>fail</checksumPolicy>
188 </snapshots>
189 </repository>
190 </repositories>
alshabib69297fd2015-09-23 13:22:33 -0700191</project>