blob: 4c49010347d09d151c0a15e912c5a7375c1e5098 [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
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>onos-cord-config</artifactId>
49 <version>${onos.version}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onlab-osgi</artifactId>
55 <version>${onos.version}</version>
56 </dependency>
57
58 <dependency>
59 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <version>4.12</version>
62 <scope>test</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onos-api</artifactId>
68 <version>${onos.version}</version>
69 <scope>test</scope>
70 <classifier>tests</classifier>
71 </dependency>
72
73 <dependency>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>org.apache.felix.scr.annotations</artifactId>
76 <version>1.9.12</version>
77 <scope>provided</scope>
78 </dependency>
79
80 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-cli</artifactId>
83 <version>${onos.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.osgi</groupId>
87 <artifactId>org.osgi.compendium</artifactId>
88 <version>5.0.0</version>
89 </dependency>
90 <dependency>
91 <groupId>com.google.guava</groupId>
92 <artifactId>guava</artifactId>
93 <version>19.0</version>
94 </dependency>
95 </dependencies>
96
97 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-bundle-plugin</artifactId>
102 <version>3.0.1</version>
103 <extensions>true</extensions>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-compiler-plugin</artifactId>
108 <version>2.5.1</version>
109 <configuration>
110 <source>1.8</source>
111 <target>1.8</target>
112 </configuration>
113 </plugin>
114 <plugin>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>maven-scr-plugin</artifactId>
117 <version>1.21.0</version>
118 <executions>
119 <execution>
120 <id>generate-scr-srcdescriptor</id>
121 <goals>
122 <goal>scr</goal>
123 </goals>
124 </execution>
125 </executions>
126 <configuration>
127 <supportedProjectTypes>
128 <supportedProjectType>bundle</supportedProjectType>
129 <supportedProjectType>war</supportedProjectType>
130 </supportedProjectTypes>
131 </configuration>
132 </plugin>
133 <plugin>
134 <groupId>org.onosproject</groupId>
135 <artifactId>onos-maven-plugin</artifactId>
136 <version>1.9</version>
137 <executions>
138 <execution>
139 <id>cfg</id>
140 <phase>generate-resources</phase>
141 <goals>
142 <goal>cfg</goal>
143 </goals>
144 </execution>
145 <execution>
146 <id>swagger</id>
147 <phase>generate-sources</phase>
148 <goals>
149 <goal>swagger</goal>
150 </goals>
151 </execution>
152 <execution>
153 <id>app</id>
154 <phase>package</phase>
155 <goals>
156 <goal>app</goal>
157 </goals>
158 </execution>
159 </executions>
160 </plugin>
161 </plugins>
162 </build>
163
164</project>