blob: 13d44fe84a32b60d420889cb5098957d3bf87865 [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 Milkey287b4ae2017-01-19 15:21:17 -080025 <version>1.9.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>
Marc De Leenheer57a5af02016-12-02 20:54:41 -080046 <module>tl1</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080047 </modules>
48
49 <dependencies>
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080050 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onlab-misc</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-junit</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <scope>test</scope>
62 </dependency>
Thomas Vachuskadc240022015-11-19 14:45:03 -080063 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-bundle-plugin</artifactId>
70 </plugin>
71 <plugin>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-maven-plugin</artifactId>
74 </plugin>
75 </plugins>
76 </build>
77
78</project>