blob: de5cdc7d8e51fb89ede3d6d1eca81ddf5b9fb084 [file] [log] [blame]
Sithara Punnasseryff114552017-01-10 11:40:55 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-present 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/xsd/maven-4.0.0.xsd">
20 <parent>
21 <artifactId>onos-apps</artifactId>
22 <groupId>org.onosproject</groupId>
23 <version>1.9.0-SNAPSHOT</version>
24 </parent>
25 <modelVersion>4.0.0</modelVersion>
26 <artifactId>onos-app-config</artifactId>
27 <packaging>bundle</packaging>
28 <description>Dynamic Config App6</description>
29 <properties>
30 <onos.app.name>org.onosproject.configapp</onos.app.name>
31 <onos.app.category>Utility</onos.app.category>
32 <onos.app.title>Dynamic Config App</onos.app.title>
33 <onos.app.url>http://onosproject.org</onos.app.url>
34 <onos.app.readme>Dynamic Config App.</onos.app.readme>
35 </properties>
36 <dependencies>
37 <dependency>
38 <groupId>org.onosproject</groupId>
39 <artifactId>onos-core-serializers</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-cli</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.osgi</groupId>
49 <artifactId>org.osgi.core</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.karaf.shell</groupId>
53 <artifactId>org.apache.karaf.shell.console</artifactId>
54 </dependency>
55 </dependencies>
56
57
58
59</project>