blob: a9f8c8539796217f85ba7f1a62c2671119793683 [file] [log] [blame]
A R Karthickb7e80902016-05-17 09:38:31 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016 Open Networking Laboratory
4 ~
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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19
A R Karthick4b72d4b2016-06-15 11:09:17 -070020 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos</artifactId>
23 <version>1.6.0-rc2</version>
24 <relativePath></relativePath>
25 </parent>
26
A R Karthickb7e80902016-05-17 09:38:31 -070027 <groupId>org.ciena.cordigmp</groupId>
28 <artifactId>ciena-cordigmp</artifactId>
A R Karthick4b72d4b2016-06-15 11:09:17 -070029 <version>2.0-SNAPSHOT</version>
A R Karthickb7e80902016-05-17 09:38:31 -070030 <packaging>bundle</packaging>
31
A R Karthick4b72d4b2016-06-15 11:09:17 -070032 <repositories>
33 <repository>
34 <id>oss-staging</id>
35 <name>OSS Staging</name>
36 <url>https://oss.sonatype.org/content/groups/staging</url>
37 </repository>
38 </repositories>
39
A R Karthickb7e80902016-05-17 09:38:31 -070040 <description>Ciena CORD IGMP for OVS</description>
41 <url>http://onosproject.org</url>
42
43 <properties>
44 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
A R Karthick4b72d4b2016-06-15 11:09:17 -070045 <onos.version>1.6.0-rc2</onos.version>
A R Karthickb7e80902016-05-17 09:38:31 -070046 <onos.app.name>org.ciena.cordigmp</onos.app.name>
47 <onos.app.title>Ciena IGMP for OVS</onos.app.title>
48 <onos.app.origin>Ciena Inc.</onos.app.origin>
49 <onos.app.category>default</onos.app.category>
50 <onos.app.url>http://onosproject.org</onos.app.url>
51 <onos.app.readme>ONOS OSGi bundle archetype.</onos.app.readme>
A R Karthick4b72d4b2016-06-15 11:09:17 -070052 <onos.app.requires>org.opencord.config</onos.app.requires>
A R Karthickb7e80902016-05-17 09:38:31 -070053 </properties>
54
55 <dependencies>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-api</artifactId>
59 <version>${onos.version}</version>
60 </dependency>
61
62 <dependency>
A R Karthick4b72d4b2016-06-15 11:09:17 -070063 <groupId>org.opencord</groupId>
64 <artifactId>cord-config</artifactId>
65 <version>1.0-SNAPSHOT</version>
A R Karthickb7e80902016-05-17 09:38:31 -070066 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onlab-osgi</artifactId>
71 <version>${onos.version}</version>
72 </dependency>
73
74 <dependency>
75 <groupId>junit</groupId>
76 <artifactId>junit</artifactId>
77 <version>4.12</version>
78 <scope>test</scope>
79 </dependency>
80
81 <dependency>
A R Karthickb7e80902016-05-17 09:38:31 -070082 <groupId>org.apache.felix</groupId>
83 <artifactId>org.apache.felix.scr.annotations</artifactId>
84 <version>1.9.12</version>
85 <scope>provided</scope>
86 </dependency>
87
88 <dependency>
89 <groupId>org.onosproject</groupId>
90 <artifactId>onos-cli</artifactId>
91 <version>${onos.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>org.osgi</groupId>
95 <artifactId>org.osgi.compendium</artifactId>
96 <version>5.0.0</version>
97 </dependency>
98 <dependency>
99 <groupId>com.google.guava</groupId>
100 <artifactId>guava</artifactId>
101 <version>19.0</version>
102 </dependency>
A R Karthick4b72d4b2016-06-15 11:09:17 -0700103
104 <dependency>
105 <groupId>org.onosproject</groupId>
106 <artifactId>onlab-misc</artifactId>
107 <version>${onos.version}</version>
108 </dependency>
109
110 <dependency>
111 <groupId>org.onosproject</groupId>
112 <artifactId>onos-incubator-api</artifactId>
113 <version>${onos.version}</version>
114 </dependency>
115
116 <dependency>
117 <groupId>org.onosproject</groupId>
118 <artifactId>onos-core-common</artifactId>
119 <version>${onos.version}</version>
120 </dependency>
121
A R Karthickb7e80902016-05-17 09:38:31 -0700122 </dependencies>
123
124 <build>
125 <plugins>
126 <plugin>
127 <groupId>org.apache.felix</groupId>
128 <artifactId>maven-bundle-plugin</artifactId>
129 <version>3.0.1</version>
130 <extensions>true</extensions>
131 </plugin>
132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-compiler-plugin</artifactId>
135 <version>2.5.1</version>
136 <configuration>
137 <source>1.8</source>
138 <target>1.8</target>
139 </configuration>
140 </plugin>
141 <plugin>
142 <groupId>org.apache.felix</groupId>
143 <artifactId>maven-scr-plugin</artifactId>
144 <version>1.21.0</version>
145 <executions>
146 <execution>
147 <id>generate-scr-srcdescriptor</id>
148 <goals>
149 <goal>scr</goal>
150 </goals>
151 </execution>
152 </executions>
153 <configuration>
154 <supportedProjectTypes>
155 <supportedProjectType>bundle</supportedProjectType>
156 <supportedProjectType>war</supportedProjectType>
157 </supportedProjectTypes>
158 </configuration>
159 </plugin>
160 <plugin>
161 <groupId>org.onosproject</groupId>
162 <artifactId>onos-maven-plugin</artifactId>
163 <version>1.9</version>
164 <executions>
165 <execution>
166 <id>cfg</id>
167 <phase>generate-resources</phase>
168 <goals>
169 <goal>cfg</goal>
170 </goals>
171 </execution>
172 <execution>
173 <id>swagger</id>
174 <phase>generate-sources</phase>
175 <goals>
176 <goal>swagger</goal>
177 </goals>
178 </execution>
179 <execution>
180 <id>app</id>
181 <phase>package</phase>
182 <goals>
183 <goal>app</goal>
184 </goals>
185 </execution>
186 </executions>
187 </plugin>
188 </plugins>
189 </build>
190
191</project>