blob: e9bdaf6a160db15fe027c958e63b21c622914e4f [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>
Thomas Vachuska18867bf2014-10-27 19:56:15 -070049 <module>oecfg</module>
tom8bb16062014-09-12 14:47:46 -070050 </modules>
51
52 <properties>
53 <web.context>default</web.context>
54 </properties>
55
56 <dependencies>
57 <dependency>
58 <groupId>org.onlab.onos</groupId>
59 <artifactId>onos-api</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>org.onlab.onos</groupId>
64 <artifactId>onlab-osgi</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67
68 <dependency>
tom8bb16062014-09-12 14:47:46 -070069 <groupId>org.apache.felix</groupId>
70 <artifactId>org.apache.felix.scr.annotations</artifactId>
71 </dependency>
72 </dependencies>
73
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
tomf297f392014-09-15 14:46:49 -070079 </plugin>
80
81 <plugin>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>maven-scr-plugin</artifactId>
tom8bb16062014-09-12 14:47:46 -070084 </plugin>
85 </plugins>
86 </build>
87
88</project>