blob: dc77b401f1a9aa944e8052b2a1c9da1a18fe65e0 [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>
Jenkins461541d2020-02-12 09:16:15 +000023 <version>2.0.1</version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>aaa-api</artifactId>
28
29 <packaging>bundle</packaging>
30
31 <description>AAA application API</description>
32
33 <properties>
Matteo Scandolo3498bc02020-01-08 09:54:12 -080034 <sadis.api.version>4.0.1</sadis.api.version>
Matteo Scandolocf847b82019-04-26 15:00:00 -070035 </properties>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onosproject</groupId>
Carmelo Cascone58b53292019-09-30 12:35:31 -070040 <artifactId>onos-api</artifactId>
Matteo Scandolocf847b82019-04-26 15:00:00 -070041 <version>${onos.version}</version>
Carmelo Cascone58b53292019-09-30 12:35:31 -070042 <scope>provided</scope>
Matteo Scandolocf847b82019-04-26 15:00:00 -070043 </dependency>
44
45 <dependency>
Carmelo Cascone58b53292019-09-30 12:35:31 -070046 <groupId>com.fasterxml.jackson.core</groupId>
47 <artifactId>jackson-databind</artifactId>
Carmelo Cascone58b53292019-09-30 12:35:31 -070048 <scope>provided</scope>
Matteo Scandolocf847b82019-04-26 15:00:00 -070049 </dependency>
50 </dependencies>
51
52 <build>
53 <plugins>
54 <plugin>
Carmelo Cascone58b53292019-09-30 12:35:31 -070055 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-source-plugin</artifactId>
Matteo Scandolocf847b82019-04-26 15:00:00 -070057 </plugin>
58 </plugins>
59 </build>
60
61</project>