blob: eb57b56911ca287d56cd0cc3d2a0821803abbf3d [file] [log] [blame]
Matteo Scandolo57af5d12019-04-29 17:11:41 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-present Open Networking Foundation
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>dhcpl2relay</artifactId>
22 <groupId>org.opencord</groupId>
Jenkins8c22d1f2019-06-28 21:31:37 +000023 <version>1.6.0</version>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>dhcpl2relay-api</artifactId>
28
29 <packaging>bundle</packaging>
30
31 <description>DHCP L2 Relay application API</description>
32
33 <properties>
Matteo Scandolo22dac742019-06-28 08:47:41 -070034 <sadis.api.version>3.1.0</sadis.api.version>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070035 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onosproject</groupId>
40 <artifactId>onlab-junit</artifactId>
41 <version>${onos.version}</version>
42 <scope>test</scope>
43 </dependency>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-core-serializers</artifactId>
48 <version>${onos.version}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.opencord</groupId>
53 <artifactId>sadis-api</artifactId>
54 <version>${sadis.api.version}</version>
55 </dependency>
56 </dependencies>
57
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
63 <extensions>true</extensions>
64 </plugin>
65 </plugins>
66 </build>
67</project>