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> |
Carmelo Cascone | b499cca | 2019-11-15 21:34:03 -0800 | [diff] [blame^] | 25 | <version>2.2.1-b3</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> |
Daniele Moro | 2fa9d3a | 2019-11-06 15:46:24 -0800 | [diff] [blame] | 30 | <version>4.0.1-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> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 41 | </properties> |
| 42 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 43 | <modules> |
| 44 | <module>api</module> |
| 45 | <module>app</module> |
| 46 | </modules> |
| 47 | |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>org.onosproject</groupId> |
| 51 | <artifactId>onos-api</artifactId> |
| 52 | <version>${onos.version}</version> |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 53 | <scope>provided</scope> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.onosproject</groupId> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 58 | <artifactId>onlab-misc</artifactId> |
| 59 | <version>${onos.version}</version> |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 60 | <scope>provided</scope> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 61 | </dependency> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 62 | </dependencies> |
| 63 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 64 | <repositories> |
| 65 | <repository> |
| 66 | <id>central</id> |
| 67 | <name>Central Repository</name> |
| 68 | <url>http://repo.maven.apache.org/maven2</url> |
| 69 | <layout>default</layout> |
| 70 | <snapshots> |
| 71 | <enabled>false</enabled> |
| 72 | </snapshots> |
| 73 | <releases> |
| 74 | <enabled>true</enabled> |
| 75 | <updatePolicy>always</updatePolicy> |
| 76 | <checksumPolicy>fail</checksumPolicy> |
| 77 | </releases> |
| 78 | </repository> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 79 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 80 | <repository> |
| 81 | <id>snapshots</id> |
| 82 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 83 | <snapshots> |
| 84 | <enabled>true</enabled> |
| 85 | <updatePolicy>always</updatePolicy> |
| 86 | <checksumPolicy>fail</checksumPolicy> |
| 87 | </snapshots> |
| 88 | </repository> |
| 89 | </repositories> |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 90 | |
Matteo Scandolo | c628ae8 | 2019-10-31 09:06:18 -0700 | [diff] [blame] | 91 | <distributionManagement> |
| 92 | <snapshotRepository> |
| 93 | <id>ossrh</id> |
| 94 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 95 | </snapshotRepository> |
| 96 | </distributionManagement> |
David K. Bainbridge | eda2b05 | 2017-07-12 09:41:04 -0700 | [diff] [blame] | 97 | </project> |