blob: 27d117ee48cd7c8ba79c58f8a447ddd4e2291967 [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>
Andrea Campanella841a30b2021-06-03 11:08:23 +020023 <version>2.5.2-SNAPSHOT</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>
Andrea Campanella841a30b2021-06-03 11:08:23 +020070 <pluginRepositories>
71 <pluginRepository>
72 <id>sonatype-snapshots</id>
73 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
74 <snapshots>
75 <enabled>true</enabled>
76 <updatePolicy>always</updatePolicy>
77 <checksumPolicy>fail</checksumPolicy>
78 </snapshots>
79 </pluginRepository>
80 </pluginRepositories>
Andrey Pozolotindce03a52020-08-24 14:50:22 +020081 <build>
82 <plugins>
83 <!-- SpotBugs Static Analysis -->
84 <plugin>
85 <groupId>com.github.spotbugs</groupId>
86 <artifactId>spotbugs-maven-plugin</artifactId>
87 <version>4.0.4</version>
88 <configuration>
89 <effort>Max</effort>
90 <threshold>Low</threshold>
91 <failOnError>false</failOnError>
92 <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile>
93 <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile>
94 <plugins>
95 <plugin>
96 <groupId>com.h3xstream.findsecbugs</groupId>
97 <artifactId>findsecbugs-plugin</artifactId>
98 <version>1.10.1</version>
99 </plugin>
100 </plugins>
101 </configuration>
102 </plugin>
103 </plugins>
104 </build>
Carmelo Casconede1e6e32019-07-15 19:39:08 -0700105 <distributionManagement>
106 <snapshotRepository>
107 <id>ossrh</id>
108 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
109 </snapshotRepository>
110 </distributionManagement>
Amit Ghosh47243cb2017-07-26 05:08:53 +0100111</project>