blob: 537d3d9a37dadaaf43bd3f40deea2f7e9602f697 [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>
Ray Milkey8fd28c72017-05-02 14:37:34 -070025 <version>1.10.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>
Ray Milkey7da85922017-05-03 13:26:52 -070045 <!-- This currently does not work
Henry Yue20926e2016-08-25 22:58:02 -040046 <module>restconf</module>
Ray Milkey7da85922017-05-03 13:26:52 -070047 -->
Marc De Leenheer57a5af02016-12-02 20:54:41 -080048 <module>tl1</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080049 </modules>
50
51 <dependencies>
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080052 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onlab-misc</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-junit</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <scope>test</scope>
64 </dependency>
Thomas Vachuskadc240022015-11-19 14:45:03 -080065 </dependencies>
66
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
72 </plugin>
73 <plugin>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-maven-plugin</artifactId>
76 </plugin>
77 </plugins>
78 </build>
79
80</project>