blob: 73d16bdc17ba1c50180ca338dc17b4c7b4f2e383 [file] [log] [blame]
Dhruv Dhody4d8943a2016-02-17 16:36:08 +05301<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 ~ Copyright 2016-present Open Networking Foundation
Dhruv Dhody4d8943a2016-02-17 16:36:08 +05303 ~
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>
ONOS Jenkins User168ac922017-12-12 18:44:15 +000024 <version>1.13.0-b6</version>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053025 </parent>
26
27 <artifactId>onos-ospf-ctl</artifactId>
28 <packaging>bundle</packaging>
29
Thomas Vachuskaa9076122016-03-02 01:07:43 -080030 <description>ONOS OSPF controller subsystem API</description>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053031
32 <dependencies>
33 <dependency>
34 <groupId>org.onosproject</groupId>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053035 <artifactId>onos-ospf-protocol</artifactId>
36 <version>${project.version}</version>
37 </dependency>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053038 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.scr.annotations</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.osgi</groupId>
44 <artifactId>org.osgi.compendium</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.easymock</groupId>
48 <artifactId>easymock</artifactId>
Dhruv Dhody4d8943a2016-02-17 16:36:08 +053049 </dependency>
50 </dependencies>
51
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-scr-plugin</artifactId>
57 </plugin>
58 </plugins>
59 </build>
60
61</project>