blob: 8305c14c4518ab4b7f19f2f57e10ffb41311ea84 [file] [log] [blame]
Thomas Vachuskadc240022015-11-19 14:45:03 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Thomas Vachuskadc240022015-11-19 14:45:03 -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 -->
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>
Brian O'Connorbfc02ec2016-09-16 00:42:37 -070025 <version>1.8.0-SNAPSHOT</version>
Thomas Vachuskadc240022015-11-19 14:45:03 -080026 </parent>
27
28 <artifactId>onos-protocols</artifactId>
29 <packaging>pom</packaging>
30
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080031 <description>ONOS southbound protocols</description>
Thomas Vachuskadc240022015-11-19 14:45:03 -080032
33 <modules>
Thomas Vachuskadc240022015-11-19 14:45:03 -080034 <module>openflow</module>
Brian O'Connor19703fb2015-11-19 16:09:45 -080035 <module>netconf</module>
Brian O'Connord3ebb302015-11-19 15:23:43 -080036 <module>pcep</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080037 <module>ovsdb</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080038 <module>bgp</module>
Andrea Campanella945ded22016-01-07 13:17:43 -080039 <module>rest</module>
Thomas Vachuskaa9076122016-03-02 01:07:43 -080040 <module>ospf</module>
Kiran Ramachandrac92a1222016-03-30 13:05:31 +053041 <module>isis</module>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070042 <module>snmp</module>
Carmelo Cascone2ea177b2016-02-25 18:38:42 -080043 <module>bmv2</module>
Jian Lib6957622016-07-01 15:12:25 +090044 <module>lisp</module>
Henry Yue20926e2016-08-25 22:58:02 -040045 <module>restconf</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080046 </modules>
47
48 <dependencies>
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080049 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onlab-misc</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onlab-junit</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
60 <scope>test</scope>
61 </dependency>
Thomas Vachuskadc240022015-11-19 14:45:03 -080062 </dependencies>
63
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>maven-bundle-plugin</artifactId>
69 </plugin>
70 <plugin>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-maven-plugin</artifactId>
73 </plugin>
74 </plugins>
75 </build>
76
77</project>