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