blob: 3c12c2f0001596b3cd2bc87887e39a19828f67e5 [file] [log] [blame]
Amit Ghosh47243cb2017-07-26 05:08:53 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Deepa vaddireddy0060f532017-08-04 06:46:05 +00003 ~ Copyright 2016-present Open Networking Foundation
Amit Ghosh47243cb2017-07-26 05:08:53 +01004 ~
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
Carmelo Casconec15a63a2019-11-14 14:19:12 -080020 <parent>
21 <groupId>org.onosproject</groupId>
22 <artifactId>onos-dependencies</artifactId>
Matteo Scandolo4fca9bd2020-03-25 15:23:12 -070023 <version>2.2.2</version>
Carmelo Casconec15a63a2019-11-14 14:19:12 -080024 </parent>
25
Amit Ghosh47243cb2017-07-26 05:08:53 +010026 <groupId>org.opencord</groupId>
27 <artifactId>dhcpl2relay</artifactId>
Jenkins817c7ba2020-07-01 10:39:24 +000028 <version>2.1.0</version>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070029 <packaging>pom</packaging>
Amit Ghosh47243cb2017-07-26 05:08:53 +010030
31 <description>DHCP L2 Relay Agent</description>
32 <url>http://opencord.org</url>
33
34 <properties>
Andrea Campanella17818442020-07-01 10:12:55 +020035 <sadis.api.version>5.1.0</sadis.api.version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010036 </properties>
37
Matteo Scandolo57af5d12019-04-29 17:11:41 -070038 <modules>
39 <module>app</module>
40 <module>api</module>
41 </modules>
42
Amit Ghosh47243cb2017-07-26 05:08:53 +010043 <repositories>
44 <repository>
45 <id>central</id>
46 <name>Central Repository</name>
Daniele Morod9bccba2020-01-15 11:09:54 -080047 <url>https://repo.maven.apache.org/maven2</url>
Amit Ghosh47243cb2017-07-26 05:08:53 +010048 <layout>default</layout>
49 <snapshots>
50 <enabled>false</enabled>
51 </snapshots>
52 <releases>
53 <enabled>true</enabled>
54 <updatePolicy>always</updatePolicy>
55 <checksumPolicy>fail</checksumPolicy>
56 </releases>
57 </repository>
58
59 <repository>
60 <id>snapshots</id>
61 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
62 <snapshots>
63 <enabled>true</enabled>
64 <updatePolicy>always</updatePolicy>
65 <checksumPolicy>fail</checksumPolicy>
66 </snapshots>
67 </repository>
68 </repositories>
Carmelo Casconede1e6e32019-07-15 19:39:08 -070069 <distributionManagement>
70 <snapshotRepository>
71 <id>ossrh</id>
72 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
73 </snapshotRepository>
74 </distributionManagement>
Amit Ghosh47243cb2017-07-26 05:08:53 +010075</project>