blob: 3515f943604e688b37ce320f2961ee57d352c500 [file] [log] [blame]
Brian O'Connor32e74602015-03-17 21:30:27 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos</artifactId>
25 <version>1.1.0</version>
26 </parent>
27
28 <artifactId>onos-app-samples</artifactId>
29 <version>1.2.0-SNAPSHOT</version>
30 <packaging>pom</packaging>
31
32 <description>ONOS sample applications</description>
33
34 <modules>
Thomas Vachuskac6733ef2015-03-17 22:49:38 -070035 <module>intent-perf</module>
36 <module>oneping</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070037 <module>ifwd</module>
38 <module>calendar</module>
39 <module>demo</module>
40 <module>election</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070041 <module>database-perf</module>
Thomas Vachuskac6733ef2015-03-17 22:49:38 -070042 <module>tvue</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070043 </modules>
44
45 <properties>
46 <web.context>default</web.context>
47 </properties>
48
49 <dependencies>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onlab-osgi</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.scr.annotations</artifactId>
64 </dependency>
65 </dependencies>
66
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
72 </plugin>
73
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-scr-plugin</artifactId>
77 </plugin>
78 <plugin>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onos-maven-plugin</artifactId>
81 <!-- FIXME the version line can be dropped when parent pom > 1.1.0 -->
82 <version>1.1.0</version>
83 </plugin>
84 </plugins>
85 </build>
86</project>