blob: 22b840148151681d000ae06db4f747899bead544 [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>
Chetan Gaonker5e46d7e2016-03-21 13:50:24 -070085 <groupId>org.onosproject</groupId>
86 <artifactId>onos-app-olt-api</artifactId>
87 <version>1.6.0-SNAPSHOT</version>
88 </dependency>
89 </dependencies>
90
91 <build>
92 <plugins>
93 <plugin>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>maven-bundle-plugin</artifactId>
96 <version>3.0.1</version>
97 <extensions>true</extensions>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-compiler-plugin</artifactId>
102 <version>2.5.1</version>
103 <configuration>
104 <source>1.8</source>
105 <target>1.8</target>
106 </configuration>
107 </plugin>
108 <plugin>
109 <groupId>org.apache.felix</groupId>
110 <artifactId>maven-scr-plugin</artifactId>
111 <version>1.21.0</version>
112 <executions>
113 <execution>
114 <id>generate-scr-srcdescriptor</id>
115 <goals>
116 <goal>scr</goal>
117 </goals>
118 </execution>
119 </executions>
120 <configuration>
121 <supportedProjectTypes>
122 <supportedProjectType>bundle</supportedProjectType>
123 <supportedProjectType>war</supportedProjectType>
124 </supportedProjectTypes>
125 </configuration>
126 </plugin>
127 <plugin>
128 <groupId>org.onosproject</groupId>
129 <artifactId>onos-maven-plugin</artifactId>
130 <version>1.9</version>
131 <executions>
132 <execution>
133 <id>cfg</id>
134 <phase>generate-resources</phase>
135 <goals>
136 <goal>cfg</goal>
137 </goals>
138 </execution>
139 <execution>
140 <id>swagger</id>
141 <phase>generate-sources</phase>
142 <goals>
143 <goal>swagger</goal>
144 </goals>
145 </execution>
146 <execution>
147 <id>app</id>
148 <phase>package</phase>
149 <goals>
150 <goal>app</goal>
151 </goals>
152 </execution>
153 </executions>
154 </plugin>
155 </plugins>
156 </build>
157
158</project>