blob: 010c531530d69dff2830c68c2fd49e891fbf7e0a [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>
alshabib02ca24e2014-09-29 23:58:59 -070024 <module>config</module>
tom8bb16062014-09-12 14:47:46 -070025 </modules>
26
27 <properties>
28 <web.context>default</web.context>
29 </properties>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.onlab.onos</groupId>
34 <artifactId>onos-api</artifactId>
35 </dependency>
36
37 <dependency>
38 <groupId>org.onlab.onos</groupId>
39 <artifactId>onlab-osgi</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42
43 <dependency>
tom8bb16062014-09-12 14:47:46 -070044 <groupId>org.apache.felix</groupId>
45 <artifactId>org.apache.felix.scr.annotations</artifactId>
46 </dependency>
47 </dependencies>
48
49 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
tomf297f392014-09-15 14:46:49 -070054 </plugin>
55
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-scr-plugin</artifactId>
tom8bb16062014-09-12 14:47:46 -070059 </plugin>
60 </plugins>
61 </build>
62
63</project>