blob: 836ab0fe92cd2a9e1c3b5308ceb8d6afd9c9a9d2 [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>
Carmelo Cascone58b53292019-09-30 12:35:31 -070023 <version>2.0.0-SNAPSHOT</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>
Carmelo Cascone58b53292019-09-30 12:35:31 -070034 <sadis.api.version>4.0.0-SNAPSHOT</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>
48 <version>2.9.5</version>
49 <scope>provided</scope>
Matteo Scandolocf847b82019-04-26 15:00:00 -070050 </dependency>
51 </dependencies>
52
53 <build>
54 <plugins>
55 <plugin>
Carmelo Cascone58b53292019-09-30 12:35:31 -070056 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-source-plugin</artifactId>
58 <version>3.1.0</version>
59 <executions>
60 <execution>
61 <id>attach-sources</id>
62 <goals>
63 <goal>jar</goal>
64 </goals>
65 </execution>
66 </executions>
Matteo Scandolocf847b82019-04-26 15:00:00 -070067 </plugin>
68 </plugins>
69 </build>
70
71</project>