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