blob: 31795fdc1e2c542176e51c4cfdc71a919f9534f6 [file] [log] [blame]
gauravf0884562016-06-17 02:47:13 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19
20 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-apps</artifactId>
23 <version>1.7.0-SNAPSHOT</version>
24 <relativePath>../pom.xml</relativePath>
25 </parent>
26
27 <artifactId>onos-app-dhcprelay</artifactId>
28 <packaging>bundle</packaging>
29
30 <description>DHCP Relay Agent</description>
31 <url>http://onosproject.org</url>
32
33 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 <onos.version>1.6.0-SNAPSHOT</onos.version>
36 <onos.app.name>org.onosproject.dhcprelay</onos.app.name>
37 <onos.app.title>DHCP Relay Agent App</onos.app.title>
38 <onos.app.origin>ON.Lab</onos.app.origin>
39 <onos.app.category>default</onos.app.category>
40 <onos.app.url>http://onosproject.org</onos.app.url>
41 <onos.app.readme>DHCP Relay Agent Application.</onos.app.readme>
42 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
48 <version>${onos.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onlab-osgi</artifactId>
54 <version>${onos.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
60 <version>4.12</version>
61 <scope>test</scope>
62 </dependency>
63
64 <dependency>
65 <groupId>org.onosproject</groupId>
66 <artifactId>onlab-junit</artifactId>
67 <scope>test</scope>
68 </dependency>
69
70 <dependency>
71 <groupId>org.onosproject</groupId>
72 <artifactId>onos-api</artifactId>
73 <version>${onos.version}</version>
74 <scope>test</scope>
75 <classifier>tests</classifier>
76 </dependency>
77
78 <dependency>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>org.apache.felix.scr.annotations</artifactId>
81 <version>1.9.12</version>
82 <scope>provided</scope>
83 </dependency>
84 </dependencies>
85</project>