blob: b2ed2f16e8fd736f37c13119dbef32cc91d1dae0 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onlab.onos</groupId>
9 <artifactId>onos</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-providers</artifactId>
15 <packaging>pom</packaging>
16
17 <description>ONOS information providers &amp; control/management protocol adapter</description>
18
19 <modules>
tomf978c962014-09-17 13:10:24 -070020 <module>openflow</module>
alshabib7911a052014-10-16 17:49:37 -070021 <module>lldp</module>
alshabibe1cf87d2014-10-17 09:23:50 -070022 <module>host</module>
tom0eb04ca2014-08-25 14:34:51 -070023 </modules>
24
25 <dependencies>
26 <dependency>
27 <groupId>org.onlab.onos</groupId>
28 <artifactId>onos-api</artifactId>
tom5f38b3a2014-08-27 23:50:54 -070029 </dependency>
30
31 <dependency>
32 <groupId>org.onlab.onos</groupId>
33 <artifactId>onlab-misc</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070034 </dependency>
tomb5a46e62014-08-26 14:20:00 -070035
tom0eb04ca2014-08-25 14:34:51 -070036 <dependency>
tomb5a46e62014-08-26 14:20:00 -070037 <groupId>org.apache.felix</groupId>
38 <artifactId>org.apache.felix.scr.annotations</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070039 </dependency>
40 </dependencies>
41
tomb5a46e62014-08-26 14:20:00 -070042 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
tomab21e7c2014-08-26 15:23:08 -070046 <artifactId>maven-scr-plugin</artifactId>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
tomb5a46e62014-08-26 14:20:00 -070050 <artifactId>maven-bundle-plugin</artifactId>
51 </plugin>
52 </plugins>
53 </build>
54
tom0eb04ca2014-08-25 14:34:51 -070055</project>