blob: 50202c1f6fd349a19b42099aee56621446f35852 [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.
16 -->
17<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos</artifactId>
Rusty Eddy76bddf92015-09-10 22:27:29 +000025 <version>1.4.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070026 </parent>
27
28 <artifactId>onos-app-samples</artifactId>
Rusty Eddy76bddf92015-09-10 22:27:29 +000029 <version>1.4.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070030 <packaging>pom</packaging>
31
32 <description>ONOS sample applications</description>
33
Thomas Vachuska9141e122015-03-18 14:53:27 -070034 <!-- TODO: Drop this when releasing artifacts and ensure that the project version is not snapshot. -->
35 <repositories>
36 <repository>
37 <id>snapshots</id>
38 <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
39 </repository>
40 </repositories>
41
Thomas Vachuska15852682015-08-06 09:45:17 -070042 <!--- FIXME Needed for onos-maven-plugin. Remove before official release -->
43 <pluginRepositories>
44 <pluginRepository>
45 <id>snapshots</id>
46 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
47 </pluginRepository>
48 </pluginRepositories>
49
Brian O'Connor32e74602015-03-17 21:30:27 -070050 <modules>
Brian O'Connor32e74602015-03-17 21:30:27 -070051 <module>calendar</module>
Luca Prete6dd36a32015-10-26 17:04:57 -070052 <module>vpls</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070053 <module>database-perf</module>
Brian O'Connord087dd22015-05-21 12:15:29 -070054 <module>flowtest</module>
Simon Huntae3e8842015-11-03 11:45:00 -080055 <module>ifwd</module>
Dusan Pajinee285302015-09-20 18:43:20 +020056 <module>ipfix</module>
Simon Huntae3e8842015-11-03 11:45:00 -080057 <module>oneping</module>
58 <module>tvue</module>
59 <module>uiref</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070060 </modules>
61
62 <properties>
63 <web.context>default</web.context>
64 </properties>
65
66 <dependencies>
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-api</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.onosproject</groupId>
74 <artifactId>onlab-osgi</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77
78 <dependency>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>org.apache.felix.scr.annotations</artifactId>
81 </dependency>
82 </dependencies>
83
84 <build>
85 <plugins>
86 <plugin>
87 <groupId>org.apache.felix</groupId>
88 <artifactId>maven-bundle-plugin</artifactId>
89 </plugin>
Brian O'Connor32e74602015-03-17 21:30:27 -070090 <plugin>
91 <groupId>org.apache.felix</groupId>
92 <artifactId>maven-scr-plugin</artifactId>
93 </plugin>
94 <plugin>
95 <groupId>org.onosproject</groupId>
96 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -070097 </plugin>
98 </plugins>
99 </build>
100</project>