blob: fdda7dbe2f80246de2914c8cf9b7f8b9a99d7d7e [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.
Francesco Lucrezia472976a2016-05-26 21:24:01 +020016 -->
17<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 -070018 <modelVersion>4.0.0</modelVersion>
19
20 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos</artifactId>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050023 <version>1.7.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070024 </parent>
25
26 <artifactId>onos-app-samples</artifactId>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050027 <version>1.7.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070028 <packaging>pom</packaging>
29
30 <description>ONOS sample applications</description>
31
32 <modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070033 <module>calendar</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070034 <module>database-perf</module>
Brian O'Connord087dd22015-05-21 12:15:29 -070035 <module>flowtest</module>
Simon Huntae3e8842015-11-03 11:45:00 -080036 <module>ifwd</module>
Dusan Pajinee285302015-09-20 18:43:20 +020037 <module>ipfix</module>
Simon Huntae3e8842015-11-03 11:45:00 -080038 <module>oneping</module>
Andreas Papazoisc2c45012016-01-20 14:26:11 +020039 <module>sdx-l3</module>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050040 <module>sdx-l2</module>
Simon Huntae3e8842015-11-03 11:45:00 -080041 <module>tvue</module>
42 <module>uiref</module>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090043 <module>ecord/co</module>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060044 <module>ecord/carrierethernet</module>
Francesco Lucrezia472976a2016-05-26 21:24:01 +020045 <module>icona</module>
HIGUCHI Yuta7c324b02016-04-07 11:08:59 -070046 </modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070047
48 <properties>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050049 <onos.version>1.7.0-SNAPSHOT</onos.version>
Brian O'Connor32e74602015-03-17 21:30:27 -070050 </properties>
51
HIGUCHI Yuta7c324b02016-04-07 11:08:59 -070052 <!-- FIXME remove before release;
53 needed for resolving SNAPSHOT version of the following
54 - finding parent pom.xml
55 - checkstyle plugin depend on onos-build-conf
56 -->
57 <repositories>
58 <repository>
59 <id>snapshots</id>
60 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
61 <releases><enabled>false</enabled></releases>
62 </repository>
63 </repositories>
64 <pluginRepositories>
65 <pluginRepository>
66 <id>snapshots</id>
67 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
68 <releases><enabled>false</enabled></releases>
69 </pluginRepository>
70 </pluginRepositories>
71
Brian O'Connor32e74602015-03-17 21:30:27 -070072 <dependencies>
73 <dependency>
74 <groupId>org.onosproject</groupId>
75 <artifactId>onos-api</artifactId>
76 </dependency>
77
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onlab-osgi</artifactId>
81 <version>${project.version}</version>
82 </dependency>
83
84 <dependency>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>org.apache.felix.scr.annotations</artifactId>
87 </dependency>
88 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>maven-bundle-plugin</artifactId>
95 </plugin>
Brian O'Connor32e74602015-03-17 21:30:27 -070096 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-scr-plugin</artifactId>
99 </plugin>
100 <plugin>
101 <groupId>org.onosproject</groupId>
102 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -0700103 </plugin>
104 </plugins>
105 </build>
106</project>