blob: 860c4dd3c2ada1e1963cfa19f02d25deb6f651cf [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>
21 </modules>
22
23 <properties>
24 <web.context>default</web.context>
25 </properties>
26
27 <dependencies>
28 <dependency>
29 <groupId>org.onlab.onos</groupId>
30 <artifactId>onos-api</artifactId>
31 </dependency>
32
33 <dependency>
34 <groupId>org.onlab.onos</groupId>
35 <artifactId>onlab-osgi</artifactId>
36 <version>${project.version}</version>
37 </dependency>
38
39 <dependency>
tom8bb16062014-09-12 14:47:46 -070040 <groupId>org.apache.felix</groupId>
41 <artifactId>org.apache.felix.scr.annotations</artifactId>
42 </dependency>
43 </dependencies>
44
45 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
tomf297f392014-09-15 14:46:49 -070050 </plugin>
51
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-scr-plugin</artifactId>
tom8bb16062014-09-12 14:47:46 -070055 </plugin>
56 </plugins>
57 </build>
58
59</project>