blob: fb519c9ef872b1c4b4db394a40e64a03a930a02b [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>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060042 <module>ecord/carrierethernet</module>
Naoki Shiota16b7abf2016-02-22 20:50:02 -080043 <module>ecord/metro</module>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090044 </modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070045
46 <properties>
Thomas Vachuska64350d62016-03-11 12:46:14 -080047 <onos.version>1.6.0-SNAPSHOT</onos.version>
Brian O'Connor32e74602015-03-17 21:30:27 -070048 </properties>
49
50 <dependencies>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-osgi</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.scr.annotations</artifactId>
65 </dependency>
66 </dependencies>
67
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-bundle-plugin</artifactId>
73 </plugin>
Brian O'Connor32e74602015-03-17 21:30:27 -070074 <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>
Brian O'Connor32e74602015-03-17 21:30:27 -070081 </plugin>
82 </plugins>
83 </build>
84</project>