blob: faf0b5d44007164f3b143ba48cb4276724bf7253 [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>
Jenkinsdfbfb832020-07-01 10:39:35 +000028 <version>2.2.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 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>
Andrey Pozolotindce03a52020-08-24 14:50:22 +020069 <build>
70 <plugins>
71 <!-- SpotBugs Static Analysis -->
72 <plugin>
73 <groupId>com.github.spotbugs</groupId>
74 <artifactId>spotbugs-maven-plugin</artifactId>
75 <version>4.0.4</version>
76 <configuration>
77 <effort>Max</effort>
78 <threshold>Low</threshold>
79 <failOnError>false</failOnError>
80 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
81 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
82 <plugins>
83 <plugin>
84 <groupId>com.h3xstream.findsecbugs</groupId>
85 <artifactId>findsecbugs-plugin</artifactId>
86 <version>1.10.1</version>
87 </plugin>
88 </plugins>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
Carmelo Casconede1e6e32019-07-15 19:39:08 -070093 <distributionManagement>
94 <snapshotRepository>
95 <id>ossrh</id>
96 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
97 </snapshotRepository>
98 </distributionManagement>
Amit Ghosh47243cb2017-07-26 05:08:53 +010099</project>