David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 180c109 | 2017-08-03 22:46:14 -0700 | [diff] [blame] | 3 | ~ Copyright 2017-present Open Networking Foundation |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -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 |
Jonathan Hart | 275ee25 | 2018-05-02 17:30:05 -0700 | [diff] [blame] | 15 | ~ limitations under the License. |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [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/xsd/maven-4.0.0.xsd"> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
Carmelo Cascone | 3d87d5f | 2019-11-14 14:19:12 -0800 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos-dependencies</artifactId> |
Matteo Scandolo | eaa1b0f | 2021-07-09 11:08:28 -0700 | [diff] [blame] | 25 | <version>2.5.2</version> |
Carmelo Cascone | 3d87d5f | 2019-11-14 14:19:12 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
Amit Ghosh | a65d703 | 2017-07-31 22:39:59 +0100 | [diff] [blame] | 28 | <groupId>org.opencord</groupId> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 29 | <artifactId>sadis</artifactId> |
Jenkins | 72ea8e9 | 2021-07-09 18:56:13 +0000 | [diff] [blame^] | 30 | <version>5.5.0-SNAPSHOT</version> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 31 | <packaging>pom</packaging> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 32 | |
| 33 | <properties> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 34 | <onos.app.name>org.opencord.sadis</onos.app.name> |
| 35 | <onos.app.category>Utility</onos.app.category> |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 36 | <onos.app.title> |
| 37 | Subscriber and Access Device Information Service |
| 38 | </onos.app.title> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 39 | <onos.app.origin>Open Networking Laboratory</onos.app.origin> |
| 40 | <onos.app.url>http://opencord.org</onos.app.url> |
Jenkins | 72ea8e9 | 2021-07-09 18:56:13 +0000 | [diff] [blame^] | 41 | <sadis.api.version>5.5.0-SNAPSHOT</sadis.api.version> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 42 | </properties> |
| 43 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 44 | <modules> |
| 45 | <module>api</module> |
| 46 | <module>app</module> |
| 47 | </modules> |
| 48 | |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onos-api</artifactId> |
| 53 | <version>${onos.version}</version> |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 54 | <scope>provided</scope> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 55 | </dependency> |
| 56 | |
| 57 | <dependency> |
| 58 | <groupId>org.onosproject</groupId> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 59 | <artifactId>onlab-misc</artifactId> |
| 60 | <version>${onos.version}</version> |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 61 | <scope>provided</scope> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 62 | </dependency> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 63 | </dependencies> |
Andrey Pozolotin | 642a93f | 2020-08-14 17:19:48 +0200 | [diff] [blame] | 64 | <build> |
| 65 | <plugins> |
| 66 | <!-- SpotBugs Static Analysis --> |
| 67 | <plugin> |
| 68 | <groupId>com.github.spotbugs</groupId> |
| 69 | <artifactId>spotbugs-maven-plugin</artifactId> |
| 70 | <version>4.0.4</version> |
| 71 | <configuration> |
| 72 | <effort>Max</effort> |
| 73 | <threshold>Low</threshold> |
Andrea Campanella | 3695021 | 2020-08-25 11:20:04 +0200 | [diff] [blame] | 74 | <failOnError>false</failOnError> |
Andrey Pozolotin | 642a93f | 2020-08-14 17:19:48 +0200 | [diff] [blame] | 75 | <includeFilterFile>${session.executionRootDirectory}/spotbugs-security-include.xml</includeFilterFile> |
| 76 | <excludeFilterFile>${session.executionRootDirectory}/spotbugs-security-exclude.xml</excludeFilterFile> |
| 77 | <plugins> |
| 78 | <plugin> |
| 79 | <groupId>com.h3xstream.findsecbugs</groupId> |
| 80 | <artifactId>findsecbugs-plugin</artifactId> |
| 81 | <version>1.10.1</version> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </configuration> |
| 85 | </plugin> |
| 86 | </plugins> |
| 87 | </build> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 88 | <repositories> |
| 89 | <repository> |
| 90 | <id>central</id> |
| 91 | <name>Central Repository</name> |
Daniele Moro | b893055 | 2020-01-15 11:14:20 -0800 | [diff] [blame] | 92 | <url>https://repo.maven.apache.org/maven2</url> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 93 | <layout>default</layout> |
| 94 | <snapshots> |
| 95 | <enabled>false</enabled> |
| 96 | </snapshots> |
| 97 | <releases> |
| 98 | <enabled>true</enabled> |
| 99 | <updatePolicy>always</updatePolicy> |
| 100 | <checksumPolicy>fail</checksumPolicy> |
| 101 | </releases> |
| 102 | </repository> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 103 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 104 | <repository> |
| 105 | <id>snapshots</id> |
| 106 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 107 | <snapshots> |
| 108 | <enabled>true</enabled> |
| 109 | <updatePolicy>always</updatePolicy> |
| 110 | <checksumPolicy>fail</checksumPolicy> |
| 111 | </snapshots> |
| 112 | </repository> |
| 113 | </repositories> |
Andrea Campanella | b791ddd | 2021-06-03 11:10:53 +0200 | [diff] [blame] | 114 | <pluginRepositories> |
| 115 | <pluginRepository> |
| 116 | <id>sonatype-snapshots</id> |
| 117 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 118 | <snapshots> |
| 119 | <enabled>true</enabled> |
| 120 | <updatePolicy>always</updatePolicy> |
| 121 | <checksumPolicy>fail</checksumPolicy> |
| 122 | </snapshots> |
| 123 | </pluginRepository> |
| 124 | </pluginRepositories> |
Matteo Scandolo | c628ae8 | 2019-10-31 09:06:18 -0700 | [diff] [blame] | 125 | <distributionManagement> |
| 126 | <snapshotRepository> |
| 127 | <id>ossrh</id> |
| 128 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 129 | </snapshotRepository> |
| 130 | </distributionManagement> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 131 | </project> |