blob: 25219fa0f179eec67edd7f967354286cfc733234 [file] [log] [blame]
Thomas Vachuskadc240022015-11-19 14:45:03 -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"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos</artifactId>
25 <version>1.4.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-protocols</artifactId>
30 <packaging>pom</packaging>
31
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080032 <description>ONOS southbound protocols</description>
Thomas Vachuskadc240022015-11-19 14:45:03 -080033
34 <modules>
Thomas Vachuskadc240022015-11-19 14:45:03 -080035 <module>openflow</module>
Brian O'Connor19703fb2015-11-19 16:09:45 -080036 <module>netconf</module>
Brian O'Connord3ebb302015-11-19 15:23:43 -080037 <module>pcep</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080038 <module>ovsdb</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080039 <module>bgp</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080040 </modules>
41
42 <dependencies>
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080043 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onlab-misc</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onlab-junit</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
54 <scope>test</scope>
55 </dependency>
Thomas Vachuskadc240022015-11-19 14:45:03 -080056 </dependencies>
57
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
63 </plugin>
64 <plugin>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onos-maven-plugin</artifactId>
67 </plugin>
68 </plugins>
69 </build>
70
71</project>