blob: 1a20f302c589116747796bf933fb201883acd967 [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
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-dependencies</artifactId>
Jonathan Hart275ee252018-05-02 17:30:05 -070025 <version>1.13.1</version>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070026 <relativePath></relativePath>
27 </parent>
28
Amit Ghosha65d7032017-07-31 22:39:59 +010029 <groupId>org.opencord</groupId>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070030 <artifactId>sadis</artifactId>
Jenkinsadb20b22018-12-17 23:45:55 +000031 <version>2.2.0</version>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010032 <packaging>pom</packaging>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070033
34 <properties>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Jonathan Hart275ee252018-05-02 17:30:05 -070036 <onos.version>1.13.1</onos.version>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070037 <onos.app.name>org.opencord.sadis</onos.app.name>
38 <onos.app.category>Utility</onos.app.category>
39 <onos.app.title>Subscriber and Access Device Information Service</onos.app.title>
40 <onos.app.origin>Open Networking Laboratory</onos.app.origin>
41 <onos.app.url>http://opencord.org</onos.app.url>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070042 </properties>
43
Amit Ghoshc29c7a92017-08-01 09:59:13 +010044 <modules>
45 <module>api</module>
46 <module>app</module>
47 </modules>
48
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070049 <dependencies>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 <version>${onos.version}</version>
54 </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>
60 </dependency>
61
62 <dependency>
63 <groupId>org.onosproject</groupId>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070064 <artifactId>onlab-osgi</artifactId>
65 <version>${onos.version}</version>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onosproject</groupId>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010070 <artifactId>onos-core-common</artifactId>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070071 <version>${onos.version}</version>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070072 </dependency>
73
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070074 </dependencies>
75
Amit Ghoshc29c7a92017-08-01 09:59:13 +010076 <repositories>
77 <repository>
78 <id>central</id>
79 <name>Central Repository</name>
80 <url>http://repo.maven.apache.org/maven2</url>
81 <layout>default</layout>
82 <snapshots>
83 <enabled>false</enabled>
84 </snapshots>
85 <releases>
86 <enabled>true</enabled>
87 <updatePolicy>always</updatePolicy>
88 <checksumPolicy>fail</checksumPolicy>
89 </releases>
90 </repository>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070091
Amit Ghoshc29c7a92017-08-01 09:59:13 +010092 <repository>
93 <id>snapshots</id>
94 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
95 <snapshots>
96 <enabled>true</enabled>
97 <updatePolicy>always</updatePolicy>
98 <checksumPolicy>fail</checksumPolicy>
99 </snapshots>
100 </repository>
101 </repositories>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -0700102</project>