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