blob: ff990de076fe511ef3e0b43bfad00153d672591b [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>
tom0eb04ca2014-08-25 14:34:51 -070022 </modules>
23
24 <dependencies>
25 <dependency>
26 <groupId>org.onlab.onos</groupId>
27 <artifactId>onos-api</artifactId>
tom5f38b3a2014-08-27 23:50:54 -070028 </dependency>
29
30 <dependency>
31 <groupId>org.onlab.onos</groupId>
32 <artifactId>onlab-misc</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070033 </dependency>
tomb5a46e62014-08-26 14:20:00 -070034
tom0eb04ca2014-08-25 14:34:51 -070035 <dependency>
tomb5a46e62014-08-26 14:20:00 -070036 <groupId>org.apache.felix</groupId>
37 <artifactId>org.apache.felix.scr.annotations</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070038 </dependency>
39 </dependencies>
40
tomb5a46e62014-08-26 14:20:00 -070041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
tomab21e7c2014-08-26 15:23:08 -070045 <artifactId>maven-scr-plugin</artifactId>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
tomb5a46e62014-08-26 14:20:00 -070049 <artifactId>maven-bundle-plugin</artifactId>
50 </plugin>
51 </plugins>
52 </build>
53
tom0eb04ca2014-08-25 14:34:51 -070054</project>