blob: 0228f4b14e36fb14a44e692097f3e185bcc26032 [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>
Ilayda Ozdemir6b623ea2021-02-23 21:06:38 +000023 <version>2.2.7</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>
Jenkinsb0761772021-03-30 10:15:27 +000028 <version>2.5.0-SNAPSHOT</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 Campanella52c372f2021-05-04 16:33:40 +020035 <sadis.api.version>5.4.0-SNAPSHOT</sadis.api.version>
Jenkinsb0761772021-03-30 10:15:27 +000036 <dhcpl2relay.api.version>2.5.0-SNAPSHOT</dhcpl2relay.api.version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010037 </properties>
38
Matteo Scandolo57af5d12019-04-29 17:11:41 -070039 <modules>
40 <module>app</module>
41 <module>api</module>
42 </modules>
43
Amit Ghosh47243cb2017-07-26 05:08:53 +010044 <repositories>
45 <repository>
46 <id>central</id>
47 <name>Central Repository</name>
Daniele Morod9bccba2020-01-15 11:09:54 -080048 <url>https://repo.maven.apache.org/maven2</url>
Amit Ghosh47243cb2017-07-26 05:08:53 +010049 <layout>default</layout>
50 <snapshots>
51 <enabled>false</enabled>
52 </snapshots>
53 <releases>
54 <enabled>true</enabled>
55 <updatePolicy>always</updatePolicy>
56 <checksumPolicy>fail</checksumPolicy>
57 </releases>
58 </repository>
59
60 <repository>
61 <id>snapshots</id>
62 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
63 <snapshots>
64 <enabled>true</enabled>
65 <updatePolicy>always</updatePolicy>
66 <checksumPolicy>fail</checksumPolicy>
67 </snapshots>
68 </repository>
69 </repositories>
Andrey Pozolotindce03a52020-08-24 14:50:22 +020070 <build>
71 <plugins>
72 <!-- SpotBugs Static Analysis -->
73 <plugin>
74 <groupId>com.github.spotbugs</groupId>
75 <artifactId>spotbugs-maven-plugin</artifactId>
76 <version>4.0.4</version>
77 <configuration>
78 <effort>Max</effort>
79 <threshold>Low</threshold>
80 <failOnError>false</failOnError>
81 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
82 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
83 <plugins>
84 <plugin>
85 <groupId>com.h3xstream.findsecbugs</groupId>
86 <artifactId>findsecbugs-plugin</artifactId>
87 <version>1.10.1</version>
88 </plugin>
89 </plugins>
90 </configuration>
91 </plugin>
92 </plugins>
93 </build>
Carmelo Casconede1e6e32019-07-15 19:39:08 -070094 <distributionManagement>
95 <snapshotRepository>
96 <id>ossrh</id>
97 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
98 </snapshotRepository>
99 </distributionManagement>
Amit Ghosh47243cb2017-07-26 05:08:53 +0100100</project>