blob: 02703d07ed7835783161fc50ade755b5371280f2 [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
Amit Ghosha65d7032017-07-31 22:39:59 +010022 <groupId>org.opencord</groupId>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070023 <artifactId>sadis</artifactId>
Daniele Moroc15ea0a2019-11-06 15:38:05 -080024 <version>4.0.0</version>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010025 <packaging>pom</packaging>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070026
27 <properties>
28 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Carmelo Cascone34059852019-09-30 19:33:00 -070029 <onos.version>2.2.0</onos.version>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070030 <onos.app.name>org.opencord.sadis</onos.app.name>
31 <onos.app.category>Utility</onos.app.category>
Carmelo Cascone34059852019-09-30 19:33:00 -070032 <onos.app.title>
33 Subscriber and Access Device Information Service
34 </onos.app.title>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070035 <onos.app.origin>Open Networking Laboratory</onos.app.origin>
36 <onos.app.url>http://opencord.org</onos.app.url>
Carmelo Cascone34059852019-09-30 19:33:00 -070037 <karaf.version>4.2.6</karaf.version>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070038 </properties>
39
Amit Ghoshc29c7a92017-08-01 09:59:13 +010040 <modules>
41 <module>api</module>
42 <module>app</module>
43 </modules>
44
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070045 <dependencies>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onos-api</artifactId>
49 <version>${onos.version}</version>
Carmelo Cascone34059852019-09-30 19:33:00 -070050 <scope>provided</scope>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070051 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010055 <artifactId>onlab-misc</artifactId>
56 <version>${onos.version}</version>
Carmelo Cascone34059852019-09-30 19:33:00 -070057 <scope>provided</scope>
Amit Ghoshc29c7a92017-08-01 09:59:13 +010058 </dependency>
59
60 <dependency>
Carmelo Cascone34059852019-09-30 19:33:00 -070061 <groupId>com.fasterxml.jackson.core</groupId>
62 <artifactId>jackson-annotations</artifactId>
63 <version>2.9.5</version>
64 <scope>provided</scope>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070065 </dependency>
66
67 <dependency>
Carmelo Cascone34059852019-09-30 19:33:00 -070068 <groupId>com.fasterxml.jackson.core</groupId>
69 <artifactId>jackson-databind</artifactId>
70 <version>2.9.5</version>
71 <scope>provided</scope>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070072 </dependency>
73
Carmelo Cascone34059852019-09-30 19:33:00 -070074 <dependency>
75 <groupId>org.slf4j</groupId>
76 <artifactId>slf4j-api</artifactId>
77 <version>1.7.25</version>
78 <scope>provided</scope>
79 </dependency>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070080 </dependencies>
81
Amit Ghoshc29c7a92017-08-01 09:59:13 +010082 <repositories>
83 <repository>
84 <id>central</id>
85 <name>Central Repository</name>
86 <url>http://repo.maven.apache.org/maven2</url>
87 <layout>default</layout>
88 <snapshots>
89 <enabled>false</enabled>
90 </snapshots>
91 <releases>
92 <enabled>true</enabled>
93 <updatePolicy>always</updatePolicy>
94 <checksumPolicy>fail</checksumPolicy>
95 </releases>
96 </repository>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -070097
Amit Ghoshc29c7a92017-08-01 09:59:13 +010098 <repository>
99 <id>snapshots</id>
100 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
101 <snapshots>
102 <enabled>true</enabled>
103 <updatePolicy>always</updatePolicy>
104 <checksumPolicy>fail</checksumPolicy>
105 </snapshots>
106 </repository>
107 </repositories>
Carmelo Cascone34059852019-09-30 19:33:00 -0700108
109 <build>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-bundle-plugin</artifactId>
114 <version>4.1.0</version>
115 <extensions>true</extensions>
116 <inherited>true</inherited>
117 </plugin>
118
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-compiler-plugin</artifactId>
122 <version>3.8.0</version>
123 <configuration>
124 <release>11</release>
125 </configuration>
126 <inherited>true</inherited>
127 </plugin>
128 </plugins>
129 </build>
Matteo Scandoloc628ae82019-10-31 09:06:18 -0700130 <distributionManagement>
131 <snapshotRepository>
132 <id>ossrh</id>
133 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
134 </snapshotRepository>
135 </distributionManagement>
David K. Bainbridgeeda2b052017-07-12 09:41:04 -0700136</project>