Gustavo Silva | 60e5ec7 | 2021-02-12 10:50:55 -0300 | [diff] [blame] | 1 | <?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> |
Jenkins | f84de2c | 2021-03-30 12:55:38 +0000 | [diff] [blame^] | 23 | <version>1.0.0</version> |
Gustavo Silva | 60e5ec7 | 2021-02-12 10:50:55 -0300 | [diff] [blame] | 24 | </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 Campanella | 0edf452 | 2021-03-30 13:50:07 +0200 | [diff] [blame] | 34 | <api.version>1.0.0</api.version> |
Gustavo Silva | 60e5ec7 | 2021-02-12 10:50:55 -0300 | [diff] [blame] | 35 | <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> |
Jenkins | f84de2c | 2021-03-30 12:55:38 +0000 | [diff] [blame^] | 75 | <version>1.0.0</version> |
Gustavo Silva | 60e5ec7 | 2021-02-12 10:50:55 -0300 | [diff] [blame] | 76 | <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> |
| 163 | |
| 164 | <build> |
| 165 | <plugins> |
| 166 | <plugin> |
| 167 | <groupId>org.onosproject</groupId> |
| 168 | <artifactId>onos-maven-plugin</artifactId> |
| 169 | </plugin> |
| 170 | <plugin> |
| 171 | <groupId>org.apache.felix</groupId> |
| 172 | <artifactId>maven-bundle-plugin</artifactId> |
| 173 | <configuration> |
| 174 | <instructions> |
| 175 | <_wab>src/main/webapp/</_wab> |
| 176 | <Include-Resource> |
| 177 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 178 | {maven-resources} |
| 179 | </Include-Resource> |
| 180 | <Import-Package> |
| 181 | *,org.glassfish.jersey.servlet |
| 182 | </Import-Package> |
| 183 | <Web-ContextPath>${web.context}</Web-ContextPath> |
| 184 | <Karaf-Commands>org.opencord.pppoeagent.cli</Karaf-Commands> |
| 185 | </instructions> |
| 186 | </configuration> |
| 187 | </plugin> |
| 188 | </plugins> |
| 189 | </build> |
| 190 | </project> |