blob: 27a1f2f4b485f11c7cf19a0a911060d2d5b2938c [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>
tom0755a362014-09-24 11:54:43 -070022 <module>foo</module>
alshabib4906fab2014-09-29 23:58:12 -070023 <module>mobility</module>
alshabibc274c902014-10-03 14:58:27 -070024 <module>proxyarp</module>
alshabib02ca24e2014-09-29 23:58:59 -070025 <module>config</module>
tom8bb16062014-09-12 14:47:46 -070026 </modules>
27
28 <properties>
29 <web.context>default</web.context>
30 </properties>
31
32 <dependencies>
33 <dependency>
34 <groupId>org.onlab.onos</groupId>
35 <artifactId>onos-api</artifactId>
36 </dependency>
37
38 <dependency>
39 <groupId>org.onlab.onos</groupId>
40 <artifactId>onlab-osgi</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43
44 <dependency>
tom8bb16062014-09-12 14:47:46 -070045 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.scr.annotations</artifactId>
47 </dependency>
48 </dependencies>
49
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
tomf297f392014-09-15 14:46:49 -070055 </plugin>
56
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-scr-plugin</artifactId>
tom8bb16062014-09-12 14:47:46 -070060 </plugin>
61 </plugins>
62 </build>
63
64</project>