blob: 759ee92a52d785a089448d5cc1d8201b2d348cc0 [file] [log] [blame]
tom8bb16062014-09-12 14:47:46 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
3 ~ Licensed to the Apache Software Foundation (ASF) under one
4 ~ or more contributor license agreements. See the NOTICE file
5 ~ distributed with this work for additional information
6 ~ regarding copyright ownership. The ASF licenses this file
7 ~ to you under the Apache License, Version 2.0 (the
8 ~ "License"); you may not use this file except in compliance
9 ~ with the License. You may obtain a copy of the License at
10 ~
11 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~
13 ~ Unless required by applicable law or agreed to in writing,
14 ~ software distributed under the License is distributed on an
15 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ~ KIND, either express or implied. See the License for the
17 ~ specific language governing permissions and limitations
18 ~ under the License.
19 -->
tom8bb16062014-09-12 14:47:46 -070020<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24
25 <parent>
26 <groupId>org.onlab.onos</groupId>
27 <artifactId>onos</artifactId>
28 <version>1.0.0-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <artifactId>onos-apps</artifactId>
33 <packaging>pom</packaging>
34
35 <description>ONOS sample applications</description>
36
37 <modules>
38 <module>tvue</module>
alshabib030111e2014-09-15 15:56:42 -070039 <module>fwd</module>
toma9a77c22014-10-03 17:05:20 -070040 <module>ifwd</module>
tom0755a362014-09-24 11:54:43 -070041 <module>foo</module>
alshabib4906fab2014-09-29 23:58:12 -070042 <module>mobility</module>
alshabibc274c902014-10-03 14:58:27 -070043 <module>proxyarp</module>
Jonathan Hart039d2b12014-10-10 09:33:04 -070044 <module>config</module>
45 <module>sdnip</module>
Thomas Vachuska140d5852014-10-16 12:17:45 -070046 <module>calendar</module>
weibit38c42ed2014-10-09 19:03:54 -070047 <module>optical</module>
Pavlin Radoslavov64d9e472014-10-21 22:01:08 -070048 <module>metrics</module>
tom8bb16062014-09-12 14:47:46 -070049 </modules>
50
51 <properties>
52 <web.context>default</web.context>
53 </properties>
54
55 <dependencies>
56 <dependency>
57 <groupId>org.onlab.onos</groupId>
58 <artifactId>onos-api</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.onlab.onos</groupId>
63 <artifactId>onlab-osgi</artifactId>
64 <version>${project.version}</version>
65 </dependency>
66
67 <dependency>
tom8bb16062014-09-12 14:47:46 -070068 <groupId>org.apache.felix</groupId>
69 <artifactId>org.apache.felix.scr.annotations</artifactId>
70 </dependency>
71 </dependencies>
72
73 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.felix</groupId>
77 <artifactId>maven-bundle-plugin</artifactId>
tomf297f392014-09-15 14:46:49 -070078 </plugin>
79
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-scr-plugin</artifactId>
tom8bb16062014-09-12 14:47:46 -070083 </plugin>
84 </plugins>
85 </build>
86
87</project>