blob: aa196fecf88d6d714ec8f7a18537798ed04a57ba [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>
Naoki Shiota16b7abf2016-02-22 20:50:02 -080042 <module>ecord/metro</module>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090043 </modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070044
45 <properties>
Thomas Vachuska64350d62016-03-11 12:46:14 -080046 <onos.version>1.6.0-SNAPSHOT</onos.version>
Brian O'Connor32e74602015-03-17 21:30:27 -070047 </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>
Brian O'Connor32e74602015-03-17 21:30:27 -070073 <plugin>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-scr-plugin</artifactId>
76 </plugin>
77 <plugin>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -070080 </plugin>
81 </plugins>
82 </build>
83</project>