blob: 192becbc1be6dd382e0970fdb4e192e31ebc9acb [file] [log] [blame]
A R Karthickb7e80902016-05-17 09:38:31 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connorbb5c0e22017-08-03 22:45:52 -07003 ~ Copyright 2016 Open Networking Foundation
A R Karthickb7e80902016-05-17 09:38:31 -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" 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>
A.R Karthick79c813e2017-06-01 17:28:26 -070022 <artifactId>onos-dependencies</artifactId>
23 <version>1.10.0-rc4</version>
A R Karthick4b72d4b2016-06-15 11:09:17 -070024 <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 Karthick79c813e2017-06-01 17:28:26 -070029 <version>3.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 Karthick79c813e2017-06-01 17:28:26 -070045 <onos.version>1.10.0-rc4</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>
A R Karthick4b72d4b2016-06-15 11:09:17 -070098
99 <dependency>
100 <groupId>org.onosproject</groupId>
101 <artifactId>onlab-misc</artifactId>
102 <version>${onos.version}</version>
103 </dependency>
104
105 <dependency>
106 <groupId>org.onosproject</groupId>
107 <artifactId>onos-incubator-api</artifactId>
108 <version>${onos.version}</version>
109 </dependency>
110
111 <dependency>
112 <groupId>org.onosproject</groupId>
113 <artifactId>onos-core-common</artifactId>
114 <version>${onos.version}</version>
115 </dependency>
116
A R Karthickb7e80902016-05-17 09:38:31 -0700117 </dependencies>
118
119 <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.9</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
186</project>