Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2016-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>dhcpl2relay</artifactId> |
| 22 | <groupId>org.opencord</groupId> |
Jenkins | 5eabd0f | 2020-03-25 22:44:31 +0000 | [diff] [blame] | 23 | <version>2.1.0-SNAPSHOT</version> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <artifactId>dhcpl2relay-app</artifactId> |
| 28 | |
| 29 | <packaging>bundle</packaging> |
Marcos Aurelio Carrero | eaf02b8 | 2019-11-25 13:34:25 -0300 | [diff] [blame] | 30 | <description>DHCP L2 Relay application for CORD</description> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 31 | |
| 32 | <properties> |
| 33 | <onos.app.name>org.opencord.dhcpl2relay</onos.app.name> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 34 | <onos.app.title>DHCP Relay Agent App</onos.app.title> |
| 35 | <onos.app.category>default</onos.app.category> |
| 36 | <onos.app.url>http://opencord.org</onos.app.url> |
| 37 | <onos.app.readme>DHCP L2 Relay Agent Application.</onos.app.readme> |
| 38 | <onos.app.requires> |
| 39 | org.opencord.sadis |
| 40 | </onos.app.requires> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 41 | </properties> |
| 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.onosproject</groupId> |
| 46 | <artifactId>onos-api</artifactId> |
| 47 | <version>${onos.version}</version> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 48 | <scope>provided</scope> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 49 | </dependency> |
| 50 | |
| 51 | <dependency> |
Jonathan Hart | 617bc3e | 2020-02-14 10:42:23 -0800 | [diff] [blame] | 52 | <groupId>org.onosproject</groupId> |
| 53 | <artifactId>onos-core-serializers</artifactId> |
| 54 | <version>${onos.version}</version> |
| 55 | <scope>provided</scope> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 59 | <groupId>org.opencord</groupId> |
| 60 | <artifactId>sadis-api</artifactId> |
| 61 | <version>${sadis.api.version}</version> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 62 | <scope>provided</scope> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.opencord</groupId> |
| 67 | <artifactId>dhcpl2relay-api</artifactId> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 68 | <version>${project.version}</version> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 69 | <scope>compile</scope> |
| 70 | </dependency> |
| 71 | |
| 72 | <dependency> |
| 73 | <groupId>org.onosproject</groupId> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 74 | <artifactId>onlab-junit</artifactId> |
| 75 | <version>${onos.version}</version> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 78 | |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>org.onosproject</groupId> |
| 81 | <artifactId>onos-cli</artifactId> |
| 82 | <version>${onos.version}</version> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 83 | <scope>provided</scope> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 84 | </dependency> |
| 85 | |
| 86 | <dependency> |
| 87 | <groupId>org.onosproject</groupId> |
| 88 | <artifactId>onos-api</artifactId> |
| 89 | <version>${onos.version}</version> |
| 90 | <scope>test</scope> |
| 91 | <classifier>tests</classifier> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 95 | <groupId>org.onosproject</groupId> |
| 96 | <artifactId>onlab-osgi</artifactId> |
| 97 | <version>${onos.version}</version> |
| 98 | <classifier>tests</classifier> |
| 99 | <scope>test</scope> |
| 100 | </dependency> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 101 | |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 102 | <dependency> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 103 | <groupId>org.apache.karaf.shell</groupId> |
Marcos Aurelio Carrero | eaf02b8 | 2019-11-25 13:34:25 -0300 | [diff] [blame] | 104 | <artifactId>org.apache.karaf.shell.core</artifactId> |
| 105 | <scope>provided</scope> |
| 106 | </dependency> |
| 107 | |
| 108 | <dependency> |
| 109 | <groupId>org.apache.karaf.shell</groupId> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 110 | <artifactId>org.apache.karaf.shell.console</artifactId> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 111 | <scope>provided</scope> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 112 | </dependency> |
| 113 | |
| 114 | <dependency> |
| 115 | <groupId>org.onosproject</groupId> |
| 116 | <artifactId>onos-core-common</artifactId> |
| 117 | <version>${onos.version}</version> |
| 118 | <classifier>tests</classifier> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 121 | |
| 122 | <dependency> |
| 123 | <groupId>org.onosproject</groupId> |
| 124 | <artifactId>onlab-misc</artifactId> |
| 125 | <version>${onos.version}</version> |
| 126 | <scope>provided</scope> |
| 127 | </dependency> |
| 128 | |
| 129 | <dependency> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 130 | <groupId>com.fasterxml.jackson.core</groupId> |
| 131 | <artifactId>jackson-databind</artifactId> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 132 | <scope>provided</scope> |
| 133 | </dependency> |
| 134 | |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 135 | </dependencies> |
| 136 | |
| 137 | <build> |
| 138 | <plugins> |
| 139 | <plugin> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 140 | <groupId>org.onosproject</groupId> |
| 141 | <artifactId>onos-maven-plugin</artifactId> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 142 | </plugin> |
| 143 | |
| 144 | <plugin> |
| 145 | <groupId>org.apache.felix</groupId> |
| 146 | <artifactId>maven-bundle-plugin</artifactId> |
| 147 | <configuration> |
| 148 | <instructions> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 149 | <Karaf-Commands>org.opencord.dhcpl2relay.cli</Karaf-Commands> |
Carmelo Cascone | de1e6e3 | 2019-07-15 19:39:08 -0700 | [diff] [blame] | 150 | </instructions> |
| 151 | </configuration> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 152 | </plugin> |
| 153 | </plugins> |
| 154 | </build> |
| 155 | |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 156 | </project> |