blob: 5f73d86d00bfdc75da186dd717aeefaef99e4433 [file] [log] [blame]
David K. Bainbridgeeda2b052017-07-12 09:41:04 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor180c1092017-08-03 22:46:14 -07003 ~ Copyright 2017-present Open Networking Foundation
David K. Bainbridgeeda2b052017-07-12 09:41:04 -07004 ~
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 Hart275ee252018-05-02 17:30:05 -070015 ~ limitations under the License.
Amit Ghoshc29c7a92017-08-01 09:59:13 +010016 -->
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. Bainbridgeeda2b052017-07-12 09:41:04 -070020 <modelVersion>4.0.0</modelVersion>
21
Carmelo Cascone3d87d5f2019-11-14 14:19:12 -080022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Matteo Scandolo345a63b2020-03-25 14:35:42 -070025 <version>2.2.2</version>
Carmelo Cascone3d87d5f2019-11-14 14:19:12 -080026 </parent>
27
Amit Ghosha65d7032017-07-31 22:39:59 +010028 <groupId>org.opencord</groupId>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070029 <artifactId>sadis</artifactId>
Jenkins470c6652020-07-01 07:48:15 +000030 <version>5.1.0</version>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010031 <packaging>pom</packaging>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070032
33 <properties>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070034 <onos.app.name>org.opencord.sadis</onos.app.name>
35 <onos.app.category>Utility</onos.app.category>
Carmelo Cascone34059852019-09-30 19:33:00 -070036 <onos.app.title>
37 Subscriber and Access Device Information Service
38 </onos.app.title>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070039 <onos.app.origin>Open Networking Laboratory</onos.app.origin>
40 <onos.app.url>http://opencord.org</onos.app.url>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070041 </properties>
42
Amit Ghoshc29c7a92017-08-01 09:59:13 +010043 <modules>
44 <module>api</module>
45 <module>app</module>
46 </modules>
47
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070048 <dependencies>
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-api</artifactId>
52 <version>${onos.version}</version>
Carmelo Cascone34059852019-09-30 19:33:00 -070053 <scope>provided</scope>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070054 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010058 <artifactId>onlab-misc</artifactId>
59 <version>${onos.version}</version>
Carmelo Cascone34059852019-09-30 19:33:00 -070060 <scope>provided</scope>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010061 </dependency>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070062 </dependencies>
63
Amit Ghoshc29c7a92017-08-01 09:59:13 +010064 <repositories>
65 <repository>
66 <id>central</id>
67 <name>Central Repository</name>
Daniele Morob8930552020-01-15 11:14:20 -080068 <url>https://repo.maven.apache.org/maven2</url>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010069 <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. Bainbridgeeda2b052017-07-12 09:41:04 -070079
Amit Ghoshc29c7a92017-08-01 09:59:13 +010080 <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 Cascone34059852019-09-30 19:33:00 -070090
Matteo Scandoloc628ae82019-10-31 09:06:18 -070091 <distributionManagement>
92 <snapshotRepository>
93 <id>ossrh</id>
94 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
95 </snapshotRepository>
96 </distributionManagement>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070097</project>