blob: 85fe571720fae085c909b8b35122b5a2b925b6b4 [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>
Brian O'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.0-SNAPSHOT</version>
Thomas Vachuskadc240022015-11-19 14:45:03 -080026 <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>
Andrea Campanella945ded22016-01-07 13:17:43 -080040 <module>rest</module>
Thomas Vachuskaa9076122016-03-02 01:07:43 -080041 <module>ospf</module>
Kiran Ramachandrac92a1222016-03-30 13:05:31 +053042 <module>isis</module>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070043 <module>snmp</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080044 </modules>
45
46 <dependencies>
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080047 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onlab-misc</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onlab-junit</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>junit</groupId>
57 <artifactId>junit</artifactId>
58 <scope>test</scope>
59 </dependency>
Thomas Vachuskadc240022015-11-19 14:45:03 -080060 </dependencies>
61
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 </plugin>
68 <plugin>
69 <groupId>org.onosproject</groupId>
70 <artifactId>onos-maven-plugin</artifactId>
71 </plugin>
72 </plugins>
73 </build>
74
75</project>