blob: 70f9b328b3e103b6e1732709986f426afe109009 [file] [log] [blame]
Thomas Vachuskadc240022015-11-19 14:45:03 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
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>
ONOS Jenkins Usercff0bd82018-08-13 23:15:43 +000025 <version>1.14.0-rc1</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>
Jian Lib6957622016-07-01 15:12:25 +090043 <module>lisp</module>
Henry Yue20926e2016-08-25 22:58:02 -040044 <module>restconf</module>
Marc De Leenheer57a5af02016-12-02 20:54:41 -080045 <module>tl1</module>
Andrea Campanella378e21a2017-06-07 12:09:59 +020046 <module>grpc</module>
Yuta HIGUCHIad7116e2018-03-06 21:35:55 -080047 <module>gnmi/stub</module>
Ray Milkeye27bb902017-11-06 12:55:17 -080048 <module>p4runtime</module>
Tomek OsiƄskie9ccf412018-01-13 19:44:11 +010049 <module>xmpp</module>
Yuta HIGUCHIcf91a2d2018-07-03 14:26:13 +090050 <module>bmv2</module>
Thomas Vachuskadc240022015-11-19 14:45:03 -080051 </modules>
52
53 <dependencies>
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080054 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-misc</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onlab-junit</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <scope>test</scope>
66 </dependency>
Thomas Vachuskadc240022015-11-19 14:45:03 -080067 </dependencies>
68
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
74 </plugin>
75 <plugin>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-maven-plugin</artifactId>
78 </plugin>
79 </plugins>
80 </build>
81
82</project>