blob: 7a89ab5ab0f18c61c895e6ad0b2a6348adacfd38 [file] [log] [blame]
Jian Li0967cd72015-11-25 17:38:48 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 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"
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19 <modelVersion>4.0.0</modelVersion>
20 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-apps</artifactId>
Brian O'Connor880dc20d2015-12-16 22:53:14 -080023 <version>1.5.0-SNAPSHOT</version>
Jian Li0967cd72015-11-25 17:38:48 -080024 <relativePath>../pom.xml</relativePath>
25 </parent>
26
27 <artifactId>onos-app-cpman</artifactId>
28 <packaging>bundle</packaging>
29
30 <description>Control Plane Management Application</description>
31
32 <dependencies>
33 <dependency>
34 <groupId>org.onosproject</groupId>
35 <artifactId>onos-api</artifactId>
Jian Li60804322015-12-02 14:46:31 -080036 <version>${project.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>org.osgi</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
41 </dependency>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onlab-junit</artifactId>
45 <scope>test</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
50 <version>${project.version}</version>
51 <classifier>tests</classifier>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-misc</artifactId>
57 <version>${project.version}</version>
58 <classifier>tests</classifier>
59 <scope>test</scope>
Jian Li0967cd72015-11-25 17:38:48 -080060 </dependency>
61 </dependencies>
Jian Li60804322015-12-02 14:46:31 -080062
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-bundle-plugin</artifactId>
68 </plugin>
69
70 <plugin>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-scr-plugin</artifactId>
73 </plugin>
74 <plugin>
75 <groupId>org.onosproject</groupId>
76 <artifactId>onos-maven-plugin</artifactId>
77 </plugin>
78 </plugins>
79 </build>
80</project>