blob: 837539f865425e925738c946785994dd41735fad [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>
Brian O'Connor16a72a52015-06-06 00:16:34 -070025 <version>1.3.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070026 </parent>
27
Brian O'Connor52da58b2015-06-06 00:15:30 -070028 <groupId>org.onosproject</groupId>
Brian O'Connor32e74602015-03-17 21:30:27 -070029 <artifactId>onos-app-samples</artifactId>
Brian O'Connor16a72a52015-06-06 00:16:34 -070030 <version>1.3.0-SNAPSHOT</version>
Brian O'Connor32e74602015-03-17 21:30:27 -070031 <packaging>pom</packaging>
32
33 <description>ONOS sample applications</description>
34
Thomas Vachuska9141e122015-03-18 14:53:27 -070035 <!-- TODO: Drop this when releasing artifacts and ensure that the project version is not snapshot. -->
36 <repositories>
37 <repository>
38 <id>snapshots</id>
39 <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
40 </repository>
41 </repositories>
42
Brian O'Connor32e74602015-03-17 21:30:27 -070043 <modules>
Thomas Vachuskac6733ef2015-03-17 22:49:38 -070044 <module>oneping</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070045 <module>ifwd</module>
46 <module>calendar</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070047 <module>database-perf</module>
Thomas Vachuskac6733ef2015-03-17 22:49:38 -070048 <module>tvue</module>
Rusty Eddy568a7ce2015-04-28 17:17:42 -040049 <module>mfwd</module>
Brian O'Connord087dd22015-05-21 12:15:29 -070050 <module>flowtest</module>
samanwita pal18696f62015-07-17 13:15:43 -070051 <module>onos-app-dhcpserver</module>
Brian O'Connor32e74602015-03-17 21:30:27 -070052 </modules>
53
54 <properties>
55 <web.context>default</web.context>
56 </properties>
57
58 <dependencies>
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-api</artifactId>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-osgi</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69
70 <dependency>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>org.apache.felix.scr.annotations</artifactId>
73 </dependency>
74 </dependencies>
75
76 <build>
77 <plugins>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 </plugin>
82
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-scr-plugin</artifactId>
86 </plugin>
87 <plugin>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onos-maven-plugin</artifactId>
Brian O'Connor32e74602015-03-17 21:30:27 -070090 </plugin>
91 </plugins>
92 </build>
93</project>