Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 4e33be2 | 2017-08-03 22:45:46 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [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 |
alshabib | 5f97951 | 2016-06-21 13:14:01 +0200 | [diff] [blame] | 15 | ~ limitations under the License. |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
Carmelo Cascone | a306120 | 2019-11-14 14:19:13 -0800 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-dependencies</artifactId> |
Andrea Campanella | 76ae68d | 2020-10-14 11:16:37 +0200 | [diff] [blame] | 25 | <version>2.2.6</version> |
Carmelo Cascone | a306120 | 2019-11-14 14:19:13 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
alshabib | 6d52745 | 2016-06-01 18:00:47 -0700 | [diff] [blame] | 28 | <groupId>org.opencord</groupId> |
| 29 | <artifactId>aaa</artifactId> |
Jenkins | d0e370f | 2020-07-01 10:40:15 +0000 | [diff] [blame] | 30 | <version>2.2.0-SNAPSHOT</version> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 31 | <packaging>pom</packaging> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 32 | |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 33 | <modules> |
| 34 | <module>app</module> |
| 35 | <module>api</module> |
| 36 | </modules> |
| 37 | |
Amit Ghosh | c9ac1e5 | 2017-07-28 12:31:18 +0100 | [diff] [blame] | 38 | <repositories> |
| 39 | <repository> |
| 40 | <id>central</id> |
| 41 | <name>Central Repository</name> |
Daniele Moro | 3d84823 | 2020-01-15 11:06:59 -0800 | [diff] [blame] | 42 | <url>https://repo.maven.apache.org/maven2</url> |
Amit Ghosh | c9ac1e5 | 2017-07-28 12:31:18 +0100 | [diff] [blame] | 43 | <layout>default</layout> |
| 44 | <snapshots> |
| 45 | <enabled>false</enabled> |
| 46 | </snapshots> |
| 47 | <releases> |
| 48 | <enabled>true</enabled> |
| 49 | <updatePolicy>always</updatePolicy> |
| 50 | <checksumPolicy>fail</checksumPolicy> |
| 51 | </releases> |
| 52 | </repository> |
Amit Ghosh | c9ac1e5 | 2017-07-28 12:31:18 +0100 | [diff] [blame] | 53 | <repository> |
| 54 | <id>snapshots</id> |
| 55 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 56 | <snapshots> |
| 57 | <enabled>true</enabled> |
| 58 | <updatePolicy>always</updatePolicy> |
| 59 | <checksumPolicy>fail</checksumPolicy> |
| 60 | </snapshots> |
| 61 | </repository> |
| 62 | </repositories> |
Andrey Pozolotin | 7afc4d9 | 2020-08-24 14:14:33 +0200 | [diff] [blame] | 63 | <build> |
| 64 | <plugins> |
| 65 | <!-- SpotBugs Static Analysis --> |
| 66 | <plugin> |
| 67 | <groupId>com.github.spotbugs</groupId> |
| 68 | <artifactId>spotbugs-maven-plugin</artifactId> |
| 69 | <version>4.0.4</version> |
| 70 | <configuration> |
| 71 | <effort>Max</effort> |
| 72 | <threshold>Low</threshold> |
| 73 | <failOnError>false</failOnError> |
| 74 | <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile> |
| 75 | <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile> |
| 76 | <plugins> |
| 77 | <plugin> |
| 78 | <groupId>com.h3xstream.findsecbugs</groupId> |
| 79 | <artifactId>findsecbugs-plugin</artifactId> |
| 80 | <version>1.10.1</version> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 87 | <distributionManagement> |
| 88 | <snapshotRepository> |
| 89 | <id>ossrh</id> |
| 90 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 91 | </snapshotRepository> |
| 92 | </distributionManagement> |
Ari Saha | 8983174 | 2015-06-26 10:31:48 -0700 | [diff] [blame] | 93 | </project> |