blob: 944de1d3dfba8e3bf37a04ed226e19b870a1b2ad [file] [log] [blame]
Matteo Scandolocf847b82019-04-26 15:00:00 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015-present Open Networking Foundation
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>
Jenkins0ca68862021-07-09 21:50:04 +000023 <version>2.5.0-SNAPSHOT</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>aaa-api</artifactId>
Ilayda Ozdemir9fdeee72021-02-26 12:24:27 +000028 <version>${aaa.api.version}</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070029 <packaging>bundle</packaging>
30
31 <description>AAA application API</description>
32
Matteo Scandolocf847b82019-04-26 15:00:00 -070033 <dependencies>
34 <dependency>
35 <groupId>org.onosproject</groupId>
Carmelo Cascone58b53292019-09-30 12:35:31 -070036 <artifactId>onos-api</artifactId>
Matteo Scandolocf847b82019-04-26 15:00:00 -070037 <version>${onos.version}</version>
Carmelo Cascone58b53292019-09-30 12:35:31 -070038 <scope>provided</scope>
Matteo Scandolocf847b82019-04-26 15:00:00 -070039 </dependency>
40
41 <dependency>
Carmelo Cascone58b53292019-09-30 12:35:31 -070042 <groupId>com.fasterxml.jackson.core</groupId>
43 <artifactId>jackson-databind</artifactId>
Carmelo Cascone58b53292019-09-30 12:35:31 -070044 <scope>provided</scope>
Matteo Scandolocf847b82019-04-26 15:00:00 -070045 </dependency>
46 </dependencies>
47
48 <build>
49 <plugins>
50 <plugin>
Carmelo Cascone58b53292019-09-30 12:35:31 -070051 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-source-plugin</artifactId>
Matteo Scandolocf847b82019-04-26 15:00:00 -070053 </plugin>
54 </plugins>
55 </build>
56
57</project>