blob: c9d069c88a6a92231c506afcbc86ce303e2f3058 [file] [log] [blame]
Gustavo Silva60e5ec72021-02-12 10:50:55 -03001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2021-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>pppoeagent</artifactId>
22 <groupId>org.opencord</groupId>
Jenkins36e26ca2021-12-27 17:37:04 +000023 <version>1.2.1-SNAPSHOT</version>
Gustavo Silva60e5ec72021-02-12 10:50:55 -030024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>pppoeagent-api</artifactId>
28 <packaging>bundle</packaging>
29 <description>PPPoE Intermediate Agent API</description>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.onosproject</groupId>
34 <artifactId>onos-api</artifactId>
35 <version>${onos.version}</version>
36 <scope>provided</scope>
37 </dependency>
38
39 <dependency>
40 <groupId>org.onosproject</groupId>
41 <artifactId>onlab-misc</artifactId>
42 <version>${onos.version}</version>
43 <scope>provided</scope>
44 </dependency>
45
46 <dependency>
47 <groupId>org.opencord</groupId>
48 <artifactId>sadis-api</artifactId>
49 <version>${sadis.api.version}</version>
50 <scope>provided</scope>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-cli</artifactId>
56 <version>${onos.version}</version>
57 </dependency>
58 </dependencies>
59
60 <build>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-source-plugin</artifactId>
65 </plugin>
66 </plugins>
67 </build>
68</project>