blob: 5b89e01aafc9f7d43e57d496d2f8d786efda7f95 [file] [log] [blame]
Jian Li0967cd72015-11-25 17:38:48 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Jian Lic35415d2016-01-14 17:22:31 -08003 ~ Copyright 2014-2016 Open Networking Laboratory
Jian Li0967cd72015-11-25 17:38:48 -08004 ~
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 -->
Jian Lic35415d2016-01-14 17:22:31 -080017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Jian Li0967cd72015-11-25 17:38:48 -080019 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <groupId>org.onosproject</groupId>
23 <artifactId>onos-apps</artifactId>
Brian O'Connor880dc20d2015-12-16 22:53:14 -080024 <version>1.5.0-SNAPSHOT</version>
Jian Li0967cd72015-11-25 17:38:48 -080025 <relativePath>../pom.xml</relativePath>
26 </parent>
27
28 <artifactId>onos-app-cpman</artifactId>
29 <packaging>bundle</packaging>
30
31 <description>Control Plane Management Application</description>
32
Jian Lic35415d2016-01-14 17:22:31 -080033 <properties>
34 <onos.app.name>org.onosproject.cpman</onos.app.name>
35 <onos.app.category>default</onos.app.category>
36 <onos.app.url>http://onosproject.org</onos.app.url>
37 <onos.app.readme>Control plane management application.
38 </onos.app.readme>
39 </properties>
40
Jian Li0967cd72015-11-25 17:38:48 -080041 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
Jian Li60804322015-12-02 14:46:31 -080045 <version>${project.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.osgi</groupId>
49 <artifactId>org.osgi.compendium</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onlab-junit</artifactId>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-api</artifactId>
59 <version>${project.version}</version>
60 <classifier>tests</classifier>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onlab-misc</artifactId>
66 <version>${project.version}</version>
67 <classifier>tests</classifier>
68 <scope>test</scope>
Jian Li0967cd72015-11-25 17:38:48 -080069 </dependency>
70 </dependencies>
Jian Li60804322015-12-02 14:46:31 -080071
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-bundle-plugin</artifactId>
77 </plugin>
78
79 <plugin>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>maven-scr-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.onosproject</groupId>
85 <artifactId>onos-maven-plugin</artifactId>
86 </plugin>
87 </plugins>
88 </build>
89</project>