Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Deepa vaddireddy | 0060f53 | 2017-08-04 06:46:05 +0000 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 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 | |
Carmelo Cascone | c15a63a | 2019-11-14 14:19:12 -0800 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.onosproject</groupId> |
| 22 | <artifactId>onos-dependencies</artifactId> |
Carmelo Cascone | 4330cf1 | 2019-11-15 21:34:02 -0800 | [diff] [blame] | 23 | <version>2.2.1-b3</version> |
Carmelo Cascone | c15a63a | 2019-11-14 14:19:12 -0800 | [diff] [blame] | 24 | </parent> |
| 25 | |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 26 | <groupId>org.opencord</groupId> |
| 27 | <artifactId>dhcpl2relay</artifactId> |
Jenkins | 11371d3 | 2020-01-08 23:05:37 +0000 | [diff] [blame^] | 28 | <version>2.0.1-SNAPSHOT</version> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 29 | <packaging>pom</packaging> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 30 | |
| 31 | <description>DHCP L2 Relay Agent</description> |
| 32 | <url>http://opencord.org</url> |
| 33 | |
| 34 | <properties> |
Matteo Scandolo | 1540fd3 | 2020-01-08 10:07:17 -0800 | [diff] [blame] | 35 | <sadis.api.version>4.0.1</sadis.api.version> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 36 | </properties> |
| 37 | |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 38 | <modules> |
| 39 | <module>app</module> |
| 40 | <module>api</module> |
| 41 | </modules> |
| 42 | |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 43 | <repositories> |
| 44 | <repository> |
| 45 | <id>central</id> |
| 46 | <name>Central Repository</name> |
| 47 | <url>http://repo.maven.apache.org/maven2</url> |
| 48 | <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 Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 69 | <distributionManagement> |
| 70 | <snapshotRepository> |
| 71 | <id>ossrh</id> |
| 72 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 73 | </snapshotRepository> |
| 74 | </distributionManagement> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 75 | </project> |