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> |
| 23 | <version>1.6.0-SNAPSHOT</version> |
| 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <artifactId>dhcpl2relay-app</artifactId> |
| 28 | |
| 29 | <packaging>bundle</packaging> |
| 30 | <description>DHCP L2 Realy application for CORD</description> |
| 31 | |
| 32 | <properties> |
| 33 | <onos.app.name>org.opencord.dhcpl2relay</onos.app.name> |
Matteo Scandolo | 22dac74 | 2019-06-28 08:47:41 -0700 | [diff] [blame^] | 34 | <onos.version>1.13.9</onos.version> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 35 | <onos.app.title>DHCP Relay Agent App</onos.app.title> |
| 36 | <onos.app.category>default</onos.app.category> |
| 37 | <onos.app.url>http://opencord.org</onos.app.url> |
| 38 | <onos.app.readme>DHCP L2 Relay Agent Application.</onos.app.readme> |
| 39 | <onos.app.requires> |
| 40 | org.opencord.sadis |
| 41 | </onos.app.requires> |
Matteo Scandolo | 22dac74 | 2019-06-28 08:47:41 -0700 | [diff] [blame^] | 42 | <sadis.api.version>3.1.0</sadis.api.version> |
Matteo Scandolo | 57af5d1 | 2019-04-29 17:11:41 -0700 | [diff] [blame] | 43 | </properties> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>org.onosproject</groupId> |
| 48 | <artifactId>onos-api</artifactId> |
| 49 | <version>${onos.version}</version> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.opencord</groupId> |
| 54 | <artifactId>sadis-api</artifactId> |
| 55 | <version>${sadis.api.version}</version> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
| 59 | <groupId>org.opencord</groupId> |
| 60 | <artifactId>dhcpl2relay-api</artifactId> |
| 61 | <version>1.6.0-SNAPSHOT</version> |
| 62 | <scope>compile</scope> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>org.onosproject</groupId> |
| 67 | <artifactId>onos-incubator-api</artifactId> |
| 68 | <version>${onos.version}</version> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
| 72 | <groupId>org.onosproject</groupId> |
| 73 | <artifactId>onlab-osgi</artifactId> |
| 74 | <version>${onos.version}</version> |
| 75 | </dependency> |
| 76 | |
| 77 | <dependency> |
| 78 | <groupId>junit</groupId> |
| 79 | <artifactId>junit</artifactId> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | |
| 83 | <dependency> |
| 84 | <groupId>org.onosproject</groupId> |
| 85 | <artifactId>onlab-junit</artifactId> |
| 86 | <version>${onos.version}</version> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.onosproject</groupId> |
| 91 | <artifactId>onos-cli</artifactId> |
| 92 | <version>${onos.version}</version> |
| 93 | </dependency> |
| 94 | |
| 95 | <dependency> |
| 96 | <groupId>org.onosproject</groupId> |
| 97 | <artifactId>onos-api</artifactId> |
| 98 | <version>${onos.version}</version> |
| 99 | <scope>test</scope> |
| 100 | <classifier>tests</classifier> |
| 101 | </dependency> |
| 102 | |
| 103 | <dependency> |
| 104 | <groupId>org.apache.felix</groupId> |
| 105 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 106 | <scope>provided</scope> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>org.osgi</groupId> |
| 110 | <artifactId>org.osgi.compendium</artifactId> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.onosproject</groupId> |
| 114 | <artifactId>onlab-osgi</artifactId> |
| 115 | <version>${onos.version}</version> |
| 116 | <classifier>tests</classifier> |
| 117 | <scope>test</scope> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.easymock</groupId> |
| 121 | <artifactId>easymock</artifactId> |
| 122 | <scope>test</scope> |
| 123 | </dependency> |
| 124 | |
| 125 | <dependency> |
| 126 | <groupId>org.apache.karaf.shell</groupId> |
| 127 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 128 | </dependency> |
| 129 | |
| 130 | <dependency> |
| 131 | <groupId>org.onosproject</groupId> |
| 132 | <artifactId>onos-core-common</artifactId> |
| 133 | <version>${onos.version}</version> |
| 134 | <classifier>tests</classifier> |
| 135 | <scope>test</scope> |
| 136 | </dependency> |
| 137 | </dependencies> |
| 138 | |
| 139 | <build> |
| 140 | <plugins> |
| 141 | <plugin> |
| 142 | <groupId>org.apache.felix</groupId> |
| 143 | <artifactId>maven-bundle-plugin</artifactId> |
| 144 | </plugin> |
| 145 | |
| 146 | <plugin> |
| 147 | <groupId>org.apache.felix</groupId> |
| 148 | <artifactId>maven-scr-plugin</artifactId> |
| 149 | </plugin> |
| 150 | |
| 151 | <plugin> |
| 152 | <groupId>org.onosproject</groupId> |
| 153 | <artifactId>onos-maven-plugin</artifactId> |
| 154 | <version>1.11</version> |
| 155 | </plugin> |
| 156 | </plugins> |
| 157 | </build> |
| 158 | |
| 159 | <repositories> |
| 160 | <repository> |
| 161 | <id>central</id> |
| 162 | <name>Central Repository</name> |
| 163 | <url>http://repo.maven.apache.org/maven2</url> |
| 164 | <layout>default</layout> |
| 165 | <snapshots> |
| 166 | <enabled>false</enabled> |
| 167 | </snapshots> |
| 168 | <releases> |
| 169 | <enabled>true</enabled> |
| 170 | <updatePolicy>always</updatePolicy> |
| 171 | <checksumPolicy>fail</checksumPolicy> |
| 172 | </releases> |
| 173 | </repository> |
| 174 | |
| 175 | <repository> |
| 176 | <id>snapshots</id> |
| 177 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 178 | <snapshots> |
| 179 | <enabled>true</enabled> |
| 180 | <updatePolicy>always</updatePolicy> |
| 181 | <checksumPolicy>fail</checksumPolicy> |
| 182 | </snapshots> |
| 183 | </repository> |
| 184 | </repositories> |
| 185 | |
| 186 | </project> |