blob: 09d2932650eea993727df54bceb19ff427d03d4d [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.
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090016 --><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Brian O'Connor32e74602015-03-17 21:30:27 -070017 <modelVersion>4.0.0</modelVersion>
18
19 <parent>
20 <groupId>org.onosproject</groupId>
21 <artifactId>onos</artifactId>
Thomas Vachuska64350d62016-03-11 12:46:14 -080022 <version>1.6.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070023 </parent>
24
25 <artifactId>onos-app-samples</artifactId>
Thomas Vachuska64350d62016-03-11 12:46:14 -080026 <version>1.6.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070027 <packaging>pom</packaging>
28
29 <description>ONOS sample applications</description>
30
31 <modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070032 <module>calendar</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070033 <module>database-perf</module>
Brian O'Connord087dd22015-05-21 12:15:29 -070034 <module>flowtest</module>
Simon Huntae3e8842015-11-03 11:45:00 -080035 <module>ifwd</module>
Dusan Pajinee285302015-09-20 18:43:20 +020036 <module>ipfix</module>
Simon Huntae3e8842015-11-03 11:45:00 -080037 <module>oneping</module>
Andreas Papazoisc2c45012016-01-20 14:26:11 +020038 <module>sdx-l3</module>
Simon Huntae3e8842015-11-03 11:45:00 -080039 <module>tvue</module>
40 <module>uiref</module>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090041 <module>ecord/co</module>
42 </modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070043
44 <properties>
Thomas Vachuska64350d62016-03-11 12:46:14 -080045 <onos.version>1.6.0-SNAPSHOT</onos.version>
Brian O'Connor32e74602015-03-17 21:30:27 -070046 </properties>
47
48 <dependencies>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-api</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onlab-osgi</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59
60 <dependency>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>org.apache.felix.scr.annotations</artifactId>
63 </dependency>
64 </dependencies>
65
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 </plugin>
Brian O'Connor32e74602015-03-17 21:30:27 -070072 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-scr-plugin</artifactId>
75 </plugin>
76 <plugin>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -070079 </plugin>
80 </plugins>
81 </build>
82</project>