blob: 4daacfe028aefeb9fb2e153741eec6a564b3b127 [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'Connor880dc20d2015-12-16 22:53:14 -080025 <version>1.5.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 Vachuskadc240022015-11-19 14:45:03 -080041 </modules>
42
43 <dependencies>
Thomas Vachuskad82c71a2015-12-01 18:59:03 -080044 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onlab-misc</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onlab-junit</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>junit</groupId>
54 <artifactId>junit</artifactId>
55 <scope>test</scope>
56 </dependency>
Thomas Vachuskadc240022015-11-19 14:45:03 -080057 </dependencies>
58
59 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
64 </plugin>
65 <plugin>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onos-maven-plugin</artifactId>
68 </plugin>
69 </plugins>
70 </build>
71
72</project>