blob: f16783f466d9fe06025bd2fa90247d28ba77180f [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>
tom8bb16062014-09-12 14:47:46 -070024 </modules>
25
26 <properties>
27 <web.context>default</web.context>
28 </properties>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.onlab.onos</groupId>
33 <artifactId>onos-api</artifactId>
34 </dependency>
35
36 <dependency>
37 <groupId>org.onlab.onos</groupId>
38 <artifactId>onlab-osgi</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41
42 <dependency>
tom8bb16062014-09-12 14:47:46 -070043 <groupId>org.apache.felix</groupId>
44 <artifactId>org.apache.felix.scr.annotations</artifactId>
45 </dependency>
46 </dependencies>
47
48 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
tomf297f392014-09-15 14:46:49 -070053 </plugin>
54
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-scr-plugin</artifactId>
tom8bb16062014-09-12 14:47:46 -070058 </plugin>
59 </plugins>
60 </build>
61
62</project>