blob: 55a786cd1ff4afd04ddd704ad8e30ed0fe4b1545 [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>
alshabib02ca24e2014-09-29 23:58:59 -070026 <module>config</module>
tom8bb16062014-09-12 14:47:46 -070027 </modules>
28
29 <properties>
30 <web.context>default</web.context>
31 </properties>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.onlab.onos</groupId>
36 <artifactId>onos-api</artifactId>
37 </dependency>
38
39 <dependency>
40 <groupId>org.onlab.onos</groupId>
41 <artifactId>onlab-osgi</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44
45 <dependency>
tom8bb16062014-09-12 14:47:46 -070046 <groupId>org.apache.felix</groupId>
47 <artifactId>org.apache.felix.scr.annotations</artifactId>
48 </dependency>
49 </dependencies>
50
51 <build>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>maven-bundle-plugin</artifactId>
tomf297f392014-09-15 14:46:49 -070056 </plugin>
57
58 <plugin>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>maven-scr-plugin</artifactId>
tom8bb16062014-09-12 14:47:46 -070061 </plugin>
62 </plugins>
63 </build>
64
65</project>