blob: b2a3494523df4af6a5fa117455734d644ef8923c [file] [log] [blame]
tom8bb16062014-09-12 14:47:46 -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-apps</artifactId>
15 <packaging>pom</packaging>
16
17 <description>ONOS sample applications</description>
18
19 <modules>
20 <module>tvue</module>
alshabib030111e2014-09-15 15:56:42 -070021 <module>fwd</module>
toma9a77c22014-10-03 17:05:20 -070022 <module>ifwd</module>
tom0755a362014-09-24 11:54:43 -070023 <module>foo</module>
alshabib4906fab2014-09-29 23:58:12 -070024 <module>mobility</module>
alshabibc274c902014-10-03 14:58:27 -070025 <module>proxyarp</module>
Jonathan Hart039d2b12014-10-10 09:33:04 -070026 <module>config</module>
27 <module>sdnip</module>
Thomas Vachuska140d5852014-10-16 12:17:45 -070028 <module>calendar</module>
weibit38c42ed2014-10-09 19:03:54 -070029 <module>optical</module>
Pavlin Radoslavov64d9e472014-10-21 22:01:08 -070030 <module>metrics</module>
tom8bb16062014-09-12 14:47:46 -070031 </modules>
32
33 <properties>
34 <web.context>default</web.context>
35 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onlab.onos</groupId>
40 <artifactId>onos-api</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>org.onlab.onos</groupId>
45 <artifactId>onlab-osgi</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48
49 <dependency>
tom8bb16062014-09-12 14:47:46 -070050 <groupId>org.apache.felix</groupId>
51 <artifactId>org.apache.felix.scr.annotations</artifactId>
52 </dependency>
53 </dependencies>
54
55 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
tomf297f392014-09-15 14:46:49 -070060 </plugin>
61
62 <plugin>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-scr-plugin</artifactId>
tom8bb16062014-09-12 14:47:46 -070065 </plugin>
66 </plugins>
67 </build>
68
69</project>