blob: c3e82d56f1a74585556cf1d480b902c1f9fffe38 [file] [log] [blame]
Sean Condon6aad2842018-02-26 23:16:36 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!-- ~ Copyright 2017 Open Networking Laboratory ~ ~ Licensed under the Apache
3 License, Version 2.0 (the "License"); ~ you may not use this file except
4 in compliance with the License. ~ You may obtain a copy of the License at
5 ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable
6 law or agreed to in writing, software ~ distributed under the License is
7 distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY
8 KIND, either express or implied. ~ See the License for the specific language
9 governing permissions and ~ limitations under the License. -->
10<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12 <modelVersion>4.0.0</modelVersion>
13
14 <parent>
15 <groupId>org.onosproject</groupId>
16 <artifactId>onos-apps-cfm</artifactId>
Ray Milkey78ce4002018-08-10 11:16:44 -070017 <version>1.14.0-b1</version>
Sean Condon6aad2842018-02-26 23:16:36 +000018 </parent>
19
20 <artifactId>onos-apps-cfm-app</artifactId>
21 <packaging>bundle</packaging>
Ray Milkey78ce4002018-08-10 11:16:44 -070022 <version>1.14.0-b1</version>
Sean Condon6aad2842018-02-26 23:16:36 +000023
24 <description>ONOS OSGi bundle archetype</description>
25 <url>http://onosproject.org</url>
26
27 <dependencies>
28
29 <dependency>
30 <groupId>org.onosproject</groupId>
31 <artifactId>onos-apps-cfm-api</artifactId>
32 <version>${project.version}</version>
33 </dependency>
34
35 <dependency>
36 <groupId>org.onosproject</groupId>
37 <artifactId>onos-api</artifactId>
38 </dependency>
39
40 <dependency>
41 <groupId>org.onosproject</groupId>
42 <artifactId>onos-api</artifactId>
43 <classifier>tests</classifier>
44 <scope>test</scope>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-core-common</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-core-common</artifactId>
55 <classifier>tests</classifier>
56 <scope>test</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onlab-junit</artifactId>
62 <scope>test</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onlab-osgi</artifactId>
68 <classifier>tests</classifier>
69 <scope>test</scope>
70 </dependency>
71
72 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onos-incubator-store</artifactId>
75 <version>${project.version}</version>
76 <scope>test</scope>
77 </dependency>
78
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onos-core-serializers</artifactId>
82 <version>${project.version}</version>
83 </dependency>
84 </dependencies>
85
86</project>
87