blob: 49c102cc372ccd9dd8be92178f376c7c9593be68 [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>
Ray Milkeyf14cc6d2017-06-28 09:07:17 -070023 <version>1.11.0-SNAPSHOT</version>
Sithara Punnasseryff114552017-01-10 11:40:55 -080024 </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>
Sithara Punnassery4b091dc2017-03-02 17:22:40 -080039 <artifactId>onos-yang-model</artifactId>
Sithara Punnassery4b091dc2017-03-02 17:22:40 -080040 </dependency>
41 <dependency>
42 <groupId>org.onosproject</groupId>
Sithara Punnasseryff114552017-01-10 11:40:55 -080043 <artifactId>onos-core-serializers</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-cli</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.osgi</groupId>
53 <artifactId>org.osgi.core</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.karaf.shell</groupId>
57 <artifactId>org.apache.karaf.shell.console</artifactId>
58 </dependency>
Sithara Punnassery9306e6b2017-02-06 15:38:19 -080059 <dependency>
60 <groupId>org.hamcrest</groupId>
61 <artifactId>hamcrest-core</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>junit</groupId>
65 <artifactId>junit</artifactId>
66 </dependency>
Sithara Punnasseryff114552017-01-10 11:40:55 -080067 </dependencies>
68
69
70
Yuta HIGUCHI1f3a8872017-05-11 15:10:02 -070071</project>