blob: 4fa749d90305cdfc9f10aa68878a437887cab276 [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>
Jenkins347e8142020-02-20 09:05:53 +000023 <version>1.6.4-SNAPSHOT</version>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>dhcpl2relay-app</artifactId>
28
29 <packaging>bundle</packaging>
30 <description>DHCP L2 Realy application for CORD</description>
31
32 <properties>
33 <onos.app.name>org.opencord.dhcpl2relay</onos.app.name>
Andrea Campanellac215aba2020-02-19 18:27:01 +010034 <onos.version>1.13.10</onos.version>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070035 <onos.app.title>DHCP Relay Agent App</onos.app.title>
36 <onos.app.category>default</onos.app.category>
37 <onos.app.url>http://opencord.org</onos.app.url>
38 <onos.app.readme>DHCP L2 Relay Agent Application.</onos.app.readme>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070039 </properties>
40
41 <dependencies>
42 <dependency>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070043 <groupId>org.opencord</groupId>
44 <artifactId>dhcpl2relay-api</artifactId>
Jenkins347e8142020-02-20 09:05:53 +000045 <version>1.6.4-SNAPSHOT</version>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070046 <scope>compile</scope>
47 </dependency>
48
49 <dependency>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070050 <groupId>org.apache.karaf.shell</groupId>
51 <artifactId>org.apache.karaf.shell.console</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-core-common</artifactId>
57 <version>${onos.version}</version>
58 <classifier>tests</classifier>
59 <scope>test</scope>
60 </dependency>
61 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-bundle-plugin</artifactId>
68 </plugin>
69
70 <plugin>
71 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-scr-plugin</artifactId>
73 </plugin>
74
75 <plugin>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-maven-plugin</artifactId>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070078 </plugin>
79 </plugins>
80 </build>
81
82 <repositories>
83 <repository>
84 <id>central</id>
85 <name>Central Repository</name>
Matteo Scandolo2a597c42020-01-22 14:11:28 -080086 <url>https://repo.maven.apache.org/maven2</url>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070087 <layout>default</layout>
88 <snapshots>
89 <enabled>false</enabled>
90 </snapshots>
91 <releases>
92 <enabled>true</enabled>
93 <updatePolicy>always</updatePolicy>
94 <checksumPolicy>fail</checksumPolicy>
95 </releases>
96 </repository>
97
98 <repository>
99 <id>snapshots</id>
100 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
101 <snapshots>
102 <enabled>true</enabled>
103 <updatePolicy>always</updatePolicy>
104 <checksumPolicy>fail</checksumPolicy>
105 </snapshots>
106 </repository>
107 </repositories>
108
pier2ee7ac42020-01-31 11:03:09 +0100109</project>