Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Joey Armstrong | 4141a91 | 2022-12-29 16:51:38 -0500 | [diff] [blame^] | 3 | ~ Copyright 2015-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -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 |
| 15 | ~ limitations under the License. |
| 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"> |
| 20 | <parent> |
| 21 | <artifactId>aaa</artifactId> |
| 22 | <groupId>org.opencord</groupId> |
Andrea Campanella | 174d95a | 2022-06-30 15:09:41 +0200 | [diff] [blame] | 23 | <version>2.7.0-SNAPSHOT</version> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <artifactId>aaa-api</artifactId> |
Ilayda Ozdemir | 9fdeee7 | 2021-02-26 12:24:27 +0000 | [diff] [blame] | 28 | <version>${aaa.api.version}</version> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 29 | <packaging>bundle</packaging> |
| 30 | |
| 31 | <description>AAA application API</description> |
| 32 | |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.onosproject</groupId> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 36 | <artifactId>onos-api</artifactId> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 37 | <version>${onos.version}</version> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 38 | <scope>provided</scope> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 39 | </dependency> |
| 40 | |
| 41 | <dependency> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 42 | <groupId>com.fasterxml.jackson.core</groupId> |
| 43 | <artifactId>jackson-databind</artifactId> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 44 | <scope>provided</scope> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 45 | </dependency> |
| 46 | </dependencies> |
| 47 | |
| 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-source-plugin</artifactId> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
| 56 | |
Joey Armstrong | 4141a91 | 2022-12-29 16:51:38 -0500 | [diff] [blame^] | 57 | </project> |