blob: 54e043e6b7c7b273e44407e59aa0b16e900d74c2 [file] [log] [blame]
Dhruv Dhody4d8943a2016-02-17 16:36:08 +05301<!--
2 ~ Copyright 2016 Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xmlns="http://maven.apache.org/POM/4.0.0"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-ospf</artifactId>
Thomas Vachuska5d8994f2016-03-03 17:13:26 -080024 <version>1.5.0-SNAPSHOT</version>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053025 <relativePath>../pom.xml</relativePath>
26 </parent>
27
28 <artifactId>onos-ospf-ctl</artifactId>
29 <packaging>bundle</packaging>
30
Thomas Vachuskaa9076122016-03-02 01:07:43 -080031 <description>ONOS OSPF controller subsystem API</description>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053032
33 <dependencies>
34 <dependency>
35 <groupId>org.onosproject</groupId>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053036 <artifactId>onos-ospf-protocol</artifactId>
37 <version>${project.version}</version>
38 </dependency>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053039 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.apache.felix.scr.annotations</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.osgi</groupId>
45 <artifactId>org.osgi.compendium</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.easymock</groupId>
49 <artifactId>easymock</artifactId>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053050 </dependency>
51 </dependencies>
52
53 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-scr-plugin</artifactId>
58 </plugin>
59 </plugins>
60 </build>
61
62</project>