blob: cd307a9215100ecc19649c1e68a77fb9f485a7c3 [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>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050022 <version>1.7.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070023 </parent>
24
25 <artifactId>onos-app-samples</artifactId>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050026 <version>1.7.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>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050039 <module>sdx-l2</module>
Simon Huntae3e8842015-11-03 11:45:00 -080040 <module>tvue</module>
41 <module>uiref</module>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090042 <module>ecord/co</module>
Konstantinos Kanonakisd9e06232016-03-02 16:14:31 -060043 <module>ecord/carrierethernet</module>
HIGUCHI Yuta7c324b02016-04-07 11:08:59 -070044 </modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070045
46 <properties>
Konstantinos Kanonakis35e9eb02016-06-06 16:38:53 -050047 <onos.version>1.7.0-SNAPSHOT</onos.version>
Brian O'Connor32e74602015-03-17 21:30:27 -070048 </properties>
49
HIGUCHI Yuta7c324b02016-04-07 11:08:59 -070050 <!-- FIXME remove before release;
51 needed for resolving SNAPSHOT version of the following
52 - finding parent pom.xml
53 - checkstyle plugin depend on onos-build-conf
54 -->
55 <repositories>
56 <repository>
57 <id>snapshots</id>
58 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
59 <releases><enabled>false</enabled></releases>
60 </repository>
61 </repositories>
62 <pluginRepositories>
63 <pluginRepository>
64 <id>snapshots</id>
65 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
66 <releases><enabled>false</enabled></releases>
67 </pluginRepository>
68 </pluginRepositories>
69
Brian O'Connor32e74602015-03-17 21:30:27 -070070 <dependencies>
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-api</artifactId>
74 </dependency>
75
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onlab-osgi</artifactId>
79 <version>${project.version}</version>
80 </dependency>
81
82 <dependency>
83 <groupId>org.apache.felix</groupId>
84 <artifactId>org.apache.felix.scr.annotations</artifactId>
85 </dependency>
86 </dependencies>
87
88 <build>
89 <plugins>
90 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-bundle-plugin</artifactId>
93 </plugin>
Brian O'Connor32e74602015-03-17 21:30:27 -070094 <plugin>
95 <groupId>org.apache.felix</groupId>
96 <artifactId>maven-scr-plugin</artifactId>
97 </plugin>
98 <plugin>
99 <groupId>org.onosproject</groupId>
100 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -0700101 </plugin>
102 </plugins>
103 </build>
104</project>