blob: 531ef73e364189be566266db0fa975eee292c40a [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>
Jonathan Hart63ddb742016-01-04 11:20:08 -080022 <version>1.5.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070023 </parent>
24
25 <artifactId>onos-app-samples</artifactId>
Jonathan Hart63ddb742016-01-04 11:20:08 -080026 <version>1.5.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070027 <packaging>pom</packaging>
28
29 <description>ONOS sample applications</description>
30
Thomas Vachuska9141e122015-03-18 14:53:27 -070031 <!-- TODO: Drop this when releasing artifacts and ensure that the project version is not snapshot. -->
32 <repositories>
33 <repository>
34 <id>snapshots</id>
35 <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
36 </repository>
37 </repositories>
38
Thomas Vachuska15852682015-08-06 09:45:17 -070039 <!--- FIXME Needed for onos-maven-plugin. Remove before official release -->
40 <pluginRepositories>
41 <pluginRepository>
42 <id>snapshots</id>
43 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
44 </pluginRepository>
45 </pluginRepositories>
46
Brian O'Connor32e74602015-03-17 21:30:27 -070047 <modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070048 <module>calendar</module>
Luca Prete6dd36a32015-10-26 17:04:57 -070049 <module>vpls</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070050 <module>database-perf</module>
Brian O'Connord087dd22015-05-21 12:15:29 -070051 <module>flowtest</module>
Simon Huntae3e8842015-11-03 11:45:00 -080052 <module>ifwd</module>
Dusan Pajinee285302015-09-20 18:43:20 +020053 <module>ipfix</module>
Simon Huntae3e8842015-11-03 11:45:00 -080054 <module>oneping</module>
Andreas Papazoisc2c45012016-01-20 14:26:11 +020055 <module>sdx-l3</module>
Simon Huntae3e8842015-11-03 11:45:00 -080056 <module>tvue</module>
57 <module>uiref</module>
Marc De Leenheercaf9eb92015-11-10 16:36:09 +090058 <module>ecord/co</module>
59 </modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070060
61 <properties>
62 <web.context>default</web.context>
63 </properties>
64
65 <dependencies>
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onos-api</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onlab-osgi</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76
77 <dependency>
78 <groupId>org.apache.felix</groupId>
79 <artifactId>org.apache.felix.scr.annotations</artifactId>
80 </dependency>
81 </dependencies>
82
83 <build>
84 <plugins>
85 <plugin>
86 <groupId>org.apache.felix</groupId>
87 <artifactId>maven-bundle-plugin</artifactId>
88 </plugin>
Brian O'Connor32e74602015-03-17 21:30:27 -070089 <plugin>
90 <groupId>org.apache.felix</groupId>
91 <artifactId>maven-scr-plugin</artifactId>
92 </plugin>
93 <plugin>
94 <groupId>org.onosproject</groupId>
95 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -070096 </plugin>
97 </plugins>
98 </build>
99</project>