Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Joey Armstrong | 6b57e06 | 2022-12-30 12:00:16 -0500 | [diff] [blame] | 3 | ~ Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [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 |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 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"> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <artifactId>sadis</artifactId> |
| 24 | <groupId>org.opencord</groupId> |
Jenkins | ec391b2 | 2023-01-04 21:26:23 +0000 | [diff] [blame^] | 25 | <version>5.7.0</version> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>sadis-api</artifactId> |
| 30 | <packaging>bundle</packaging> |
Ilayda Ozdemir | d0dab66 | 2021-02-23 10:36:33 +0000 | [diff] [blame] | 31 | <version>${sadis.api.version}</version> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 32 | |
| 33 | <url>http://opencord.org</url> |
| 34 | |
| 35 | <description>Subscriber and Device Information Service API</description> |
| 36 | |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 37 | <build> |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-source-plugin</artifactId> |
Carmelo Cascone | 3405985 | 2019-09-30 19:33:00 -0700 | [diff] [blame] | 42 | </plugin> |
| 43 | </plugins> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 44 | </build> |
Ilayda Ozdemir | d0dab66 | 2021-02-23 10:36:33 +0000 | [diff] [blame] | 45 | |
| 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>com.fasterxml.jackson.core</groupId> |
| 49 | <artifactId>jackson-annotations</artifactId> |
| 50 | <version>2.10.2</version> |
| 51 | <scope>provided</scope> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>com.fasterxml.jackson.core</groupId> |
| 56 | <artifactId>jackson-databind</artifactId> |
| 57 | <version>2.10.2</version> |
| 58 | <scope>provided</scope> |
| 59 | </dependency> |
| 60 | </dependencies> |
Amit Ghosh | c29c7a9 | 2017-08-01 09:59:13 +0100 | [diff] [blame] | 61 | </project> |