blob: badafc97c364ca43f4c620c3147a9c218ff1caac [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/maven-v4_0_0.xsd">
20 <parent>
21 <groupId>org.opencord</groupId>
22 <artifactId>pppoeagent</artifactId>
Jenkins162798d2021-07-09 21:56:11 +000023 <version>1.1.0</version>
Gustavo Silva60e5ec72021-02-12 10:50:55 -030024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>pppoeagent-app</artifactId>
28
29 <packaging>bundle</packaging>
30 <description>PPPoE Intermediate Agent application</description>
31
32 <properties>
33 <web.context>/onos/pppoeagent</web.context>
Andrea Campanella0edf4522021-03-30 13:50:07 +020034 <api.version>1.0.0</api.version>
Gustavo Silva60e5ec72021-02-12 10:50:55 -030035 <api.title>PPPoE Agent REST API</api.title>
36 <api.description>REST API to query PPPoE agent sessions information.</api.description>
37 <api.package>org.opencord.pppoeagent.rest</api.package>
38 <onos.app.requires>
39 org.opencord.sadis
40 </onos.app.requires>
41 <onos.app.name>org.opencord.pppoeagent</onos.app.name>
42 <onos.app.title>PPPoE Intermediate Agent App</onos.app.title>
43 <onos.app.category>vOLT</onos.app.category>
44 <onos.app.url>http://opencord.org</onos.app.url>
45 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
46 <onos.app.readme>PPPoE Intermediate Agent</onos.app.readme>
47 <onos.app.origin>Furukawa Electric LatAm</onos.app.origin>
48 </properties>
49
50 <dependencies>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 <version>${onos.version}</version>
55 <scope>provided</scope>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-core-serializers</artifactId>
61 <version>${onos.version}</version>
62 <scope>provided</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onlab-rest</artifactId>
68 <version>${onos.version}</version>
69 <scope>provided</scope>
70 </dependency>
71
72 <dependency>
73 <groupId>org.opencord</groupId>
74 <artifactId>pppoeagent-api</artifactId>
Jenkins162798d2021-07-09 21:56:11 +000075 <version>1.1.0</version>
Gustavo Silva60e5ec72021-02-12 10:50:55 -030076 <scope>compile</scope>
77 </dependency>
78
79 <dependency>
80 <groupId>org.onosproject</groupId>
81 <artifactId>onlab-junit</artifactId>
82 <version>${onos.version}</version>
83 <scope>test</scope>
84 </dependency>
85
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onos-cli</artifactId>
89 <version>${onos.version}</version>
90 <scope>provided</scope>
91 </dependency>
92
93 <dependency>
94 <groupId>org.onosproject</groupId>
95 <artifactId>onos-api</artifactId>
96 <version>${onos.version}</version>
97 <scope>test</scope>
98 <classifier>tests</classifier>
99 </dependency>
100
101 <dependency>
102 <groupId>org.opencord</groupId>
103 <artifactId>sadis-api</artifactId>
104 <version>${sadis.api.version}</version>
105 <scope>provided</scope>
106 </dependency>
107
108 <dependency>
109 <groupId>org.onosproject</groupId>
110 <artifactId>onos-core-common</artifactId>
111 <version>${onos.version}</version>
112 <classifier>tests</classifier>
113 <scope>test</scope>
114 </dependency>
115
116 <dependency>
117 <groupId>org.onosproject</groupId>
118 <artifactId>onlab-misc</artifactId>
119 <version>${onos.version}</version>
120 <scope>provided</scope>
121 </dependency>
122
123 <dependency>
124 <groupId>com.fasterxml.jackson.core</groupId>
125 <artifactId>jackson-databind</artifactId>
126 <scope>provided</scope>
127 </dependency>
128
129 <dependency>
130 <groupId>org.onosproject</groupId>
131 <artifactId>onos-api</artifactId>
132 <version>${onos.version}</version>
133 <scope>test</scope>
134 <classifier>tests</classifier>
135 </dependency>
136
137 <dependency>
138 <groupId>org.onosproject</groupId>
139 <artifactId>onlab-osgi</artifactId>
140 <version>${onos.version}</version>
141 <classifier>tests</classifier>
142 <scope>test</scope>
143 </dependency>
144
145 <dependency>
146 <groupId>org.apache.karaf.shell</groupId>
147 <artifactId>org.apache.karaf.shell.core</artifactId>
148 <scope>provided</scope>
149 </dependency>
150
151 <dependency>
152 <groupId>org.apache.karaf.shell</groupId>
153 <artifactId>org.apache.karaf.shell.console</artifactId>
154 <scope>provided</scope>
155 </dependency>
156
157 <dependency>
158 <groupId>javax.ws.rs</groupId>
159 <artifactId>javax.ws.rs-api</artifactId>
160 <scope>provided</scope>
161 </dependency>
162 </dependencies>
Gustavo Silva60e5ec72021-02-12 10:50:55 -0300163 <build>
164 <plugins>
165 <plugin>
166 <groupId>org.onosproject</groupId>
167 <artifactId>onos-maven-plugin</artifactId>
168 </plugin>
169 <plugin>
170 <groupId>org.apache.felix</groupId>
171 <artifactId>maven-bundle-plugin</artifactId>
172 <configuration>
173 <instructions>
174 <_wab>src/main/webapp/</_wab>
175 <Include-Resource>
176 WEB-INF/classes/apidoc/swagger.json=target/swagger.json,
177 {maven-resources}
178 </Include-Resource>
179 <Import-Package>
180 *,org.glassfish.jersey.servlet
181 </Import-Package>
182 <Web-ContextPath>${web.context}</Web-ContextPath>
183 <Karaf-Commands>org.opencord.pppoeagent.cli</Karaf-Commands>
184 </instructions>
185 </configuration>
186 </plugin>
187 </plugins>
188 </build>
189</project>