blob: c897fd8e00854e1436b47e76c304a98d69e8cdfa [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>
Yuta HIGUCHI5a016cf2016-12-20 15:19:22 -080047 <module>mef-nrp-api</module>
Francesco Lucrezia472976a2016-05-26 21:24:01 +020048 <module>icona</module>
HIGUCHI Yuta7c324b02016-04-07 11:08:59 -070049 </modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070050
51 <properties>
Yuta HIGUCHI4d474072016-12-13 18:17:45 -080052 <onos.version>1.9.0-SNAPSHOT</onos.version>
Brian O'Connor32e74602015-03-17 21:30:27 -070053 </properties>
54
HIGUCHI Yuta7c324b02016-04-07 11:08:59 -070055 <!-- FIXME remove before release;
56 needed for resolving SNAPSHOT version of the following
57 - finding parent pom.xml
58 - checkstyle plugin depend on onos-build-conf
59 -->
60 <repositories>
61 <repository>
62 <id>snapshots</id>
63 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
64 <releases><enabled>false</enabled></releases>
65 </repository>
66 </repositories>
67 <pluginRepositories>
68 <pluginRepository>
69 <id>snapshots</id>
70 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
71 <releases><enabled>false</enabled></releases>
72 </pluginRepository>
73 </pluginRepositories>
74
Brian O'Connor32e74602015-03-17 21:30:27 -070075 <dependencies>
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onos-api</artifactId>
79 </dependency>
80
81 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onlab-osgi</artifactId>
84 <version>${project.version}</version>
85 </dependency>
86
87 <dependency>
88 <groupId>org.apache.felix</groupId>
89 <artifactId>org.apache.felix.scr.annotations</artifactId>
90 </dependency>
91 </dependencies>
92
93 <build>
94 <plugins>
95 <plugin>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>maven-bundle-plugin</artifactId>
98 </plugin>
Brian O'Connor32e74602015-03-17 21:30:27 -070099 <plugin>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>maven-scr-plugin</artifactId>
102 </plugin>
103 <plugin>
104 <groupId>org.onosproject</groupId>
105 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -0700106 </plugin>
107 </plugins>
108 </build>
109</project>