blob: 27c843b48ffdfea3acd633b58504ebced4103526 [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>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080023 <version>1.9.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070024 </parent>
25
26 <artifactId>onos-app-samples</artifactId>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080027 <version>1.9.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>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080039<!-- exclude failing build
Andreas Papazoisc2c45012016-01-20 14:26:11 +020040 <module>sdx-l3</module>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080041-->
42 <module>sdx-l2</module>
Simon Huntae3e8842015-11-03 11:45:00 -080043 <module>tvue</module>
44 <module>uiref</module>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090045 <module>ecord/co</module>
Yuta HIGUCHI953f14c2016-12-15 19:20:33 -080046 <module>carrierethernet</module>
Francesco Lucrezia472976a2016-05-26 21:24:01 +020047 <module>icona</module>
HIGUCHI Yuta7c324b02016-04-07 11:08:59 -070048 </modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070049
50 <properties>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080051 <onos.version>1.9.0-SNAPSHOT</onos.version>
Brian O'Connor32e74602015-03-17 21:30:27 -070052 </properties>
53
HIGUCHI Yuta7c324b02016-04-07 11:08:59 -070054 <!-- FIXME remove before release;
55 needed for resolving SNAPSHOT version of the following
56 - finding parent pom.xml
57 - checkstyle plugin depend on onos-build-conf
58 -->
59 <repositories>
60 <repository>
61 <id>snapshots</id>
62 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
63 <releases><enabled>false</enabled></releases>
64 </repository>
65 </repositories>
66 <pluginRepositories>
67 <pluginRepository>
68 <id>snapshots</id>
69 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
70 <releases><enabled>false</enabled></releases>
71 </pluginRepository>
72 </pluginRepositories>
73
Brian O'Connor32e74602015-03-17 21:30:27 -070074 <dependencies>
75 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-api</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onlab-osgi</artifactId>
83 <version>${project.version}</version>
84 </dependency>
85
86 <dependency>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>org.apache.felix.scr.annotations</artifactId>
89 </dependency>
90 </dependencies>
91
92 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-bundle-plugin</artifactId>
97 </plugin>
Brian O'Connor32e74602015-03-17 21:30:27 -070098 <plugin>
99 <groupId>org.apache.felix</groupId>
100 <artifactId>maven-scr-plugin</artifactId>
101 </plugin>
102 <plugin>
103 <groupId>org.onosproject</groupId>
104 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -0700105 </plugin>
106 </plugins>
107 </build>
108</project>