blob: 73882375b21b6be6ba7e8f9658fa633ee8c1a98d [file] [log] [blame]
Chetan Gaonker5e46d7e2016-03-21 13:50:24 -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
20 <groupId>org.ciena.cordigmp</groupId>
21 <artifactId>ciena-cordigmp</artifactId>
22 <version>1.0-SNAPSHOT</version>
23 <packaging>bundle</packaging>
24
25 <description>Ciena CORD IGMP for OVS</description>
26 <url>http://onosproject.org</url>
27
28 <properties>
29 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30 <onos.version>1.6.0-SNAPSHOT</onos.version>
31 <onos.app.name>org.ciena.cordigmp</onos.app.name>
32 <onos.app.title>Ciena IGMP for OVS</onos.app.title>
33 <onos.app.origin>Ciena Inc.</onos.app.origin>
34 <onos.app.category>default</onos.app.category>
35 <onos.app.url>http://onosproject.org</onos.app.url>
36 <onos.app.readme>ONOS OSGi bundle archetype.</onos.app.readme>
37 </properties>
38
39 <dependencies>
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-api</artifactId>
43 <version>${onos.version}</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-osgi</artifactId>
49 <version>${onos.version}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>junit</groupId>
54 <artifactId>junit</artifactId>
55 <version>4.12</version>
56 <scope>test</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-api</artifactId>
62 <version>${onos.version}</version>
63 <scope>test</scope>
64 <classifier>tests</classifier>
65 </dependency>
66
67 <dependency>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>org.apache.felix.scr.annotations</artifactId>
70 <version>1.9.12</version>
71 <scope>provided</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-cli</artifactId>
77 <version>1.6.0-SNAPSHOT</version>
78 </dependency>
79 <dependency>
80 <groupId>org.osgi</groupId>
81 <artifactId>org.osgi.compendium</artifactId>
82 <version>5.0.0</version>
83 </dependency>
84 <dependency>
85 <groupId>com.sun.jersey</groupId>
86 <artifactId>jersey-client</artifactId>
87 <version>1.19</version>
88 </dependency>
89 <dependency>
90 <groupId>org.onosproject</groupId>
91 <artifactId>onos-app-olt-api</artifactId>
92 <version>1.6.0-SNAPSHOT</version>
93 </dependency>
94 </dependencies>
95
96 <build>
97 <plugins>
98 <plugin>
99 <groupId>org.apache.felix</groupId>
100 <artifactId>maven-bundle-plugin</artifactId>
101 <version>3.0.1</version>
102 <extensions>true</extensions>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-compiler-plugin</artifactId>
107 <version>2.5.1</version>
108 <configuration>
109 <source>1.8</source>
110 <target>1.8</target>
111 </configuration>
112 </plugin>
113 <plugin>
114 <groupId>org.apache.felix</groupId>
115 <artifactId>maven-scr-plugin</artifactId>
116 <version>1.21.0</version>
117 <executions>
118 <execution>
119 <id>generate-scr-srcdescriptor</id>
120 <goals>
121 <goal>scr</goal>
122 </goals>
123 </execution>
124 </executions>
125 <configuration>
126 <supportedProjectTypes>
127 <supportedProjectType>bundle</supportedProjectType>
128 <supportedProjectType>war</supportedProjectType>
129 </supportedProjectTypes>
130 </configuration>
131 </plugin>
132 <plugin>
133 <groupId>org.onosproject</groupId>
134 <artifactId>onos-maven-plugin</artifactId>
135 <version>1.9</version>
136 <executions>
137 <execution>
138 <id>cfg</id>
139 <phase>generate-resources</phase>
140 <goals>
141 <goal>cfg</goal>
142 </goals>
143 </execution>
144 <execution>
145 <id>swagger</id>
146 <phase>generate-sources</phase>
147 <goals>
148 <goal>swagger</goal>
149 </goals>
150 </execution>
151 <execution>
152 <id>app</id>
153 <phase>package</phase>
154 <goals>
155 <goal>app</goal>
156 </goals>
157 </execution>
158 </executions>
159 </plugin>
160 </plugins>
161 </build>
162
163</project>