Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Deepa vaddireddy | 0060f53 | 2017-08-04 06:46:05 +0000 | [diff] [blame] | 3 | ~ Copyright 2016-present Open Networking Foundation |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | |
| 20 | <parent> |
| 21 | <groupId>org.onosproject</groupId> |
| 22 | <artifactId>onos-dependencies</artifactId> |
David K. Bainbridge | 7e51abc | 2017-09-07 14:00:30 -0700 | [diff] [blame] | 23 | <version>1.10.6</version> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 24 | <relativePath></relativePath> |
| 25 | </parent> |
| 26 | |
| 27 | <groupId>org.opencord</groupId> |
| 28 | <artifactId>dhcpl2relay</artifactId> |
David K. Bainbridge | 4f86d42 | 2017-09-08 11:22:42 -0700 | [diff] [blame^] | 29 | <version>1.1.0</version> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <description>DHCP L2 Relay Agent</description> |
| 33 | <url>http://opencord.org</url> |
| 34 | |
| 35 | <properties> |
| 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 37 | <onos.app.name>org.opencord.dhcpl2relay</onos.app.name> |
| 38 | <onos.app.title>DHCP Relay Agent App</onos.app.title> |
| 39 | <onos.app.origin>ON.Lab</onos.app.origin> |
| 40 | <onos.app.category>default</onos.app.category> |
| 41 | <onos.app.url>http://opencord.org</onos.app.url> |
| 42 | <onos.app.readme>DHCP L2 Relay Agent Application.</onos.app.readme> |
David K. Bainbridge | 7e51abc | 2017-09-07 14:00:30 -0700 | [diff] [blame] | 43 | <onos.version>1.10.6</onos.version> |
David K. Bainbridge | 4f86d42 | 2017-09-08 11:22:42 -0700 | [diff] [blame^] | 44 | <sadis.api.version>1.1.0</sadis.api.version> |
David K. Bainbridge | c6cf168 | 2017-08-17 09:54:40 -0700 | [diff] [blame] | 45 | <!-- TODO onos-build-conf.version can be dropped when onos.version > 1.10.3 --> |
| 46 | <onos-build-conf.version>1.10.3-onf</onos-build-conf.version> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 47 | </properties> |
| 48 | |
| 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onos-api</artifactId> |
| 53 | <version>${onos.version}</version> |
| 54 | </dependency> |
| 55 | |
| 56 | <dependency> |
| 57 | <groupId>org.opencord</groupId> |
Deepa vaddireddy | 0060f53 | 2017-08-04 06:46:05 +0000 | [diff] [blame] | 58 | <artifactId>sadis-api</artifactId> |
David K. Bainbridge | 03329de | 2017-08-10 10:39:09 -0700 | [diff] [blame] | 59 | <version>${sadis.api.version}</version> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>org.onosproject</groupId> |
| 64 | <artifactId>onos-incubator-api</artifactId> |
| 65 | <version>${onos.version}</version> |
| 66 | </dependency> |
| 67 | |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onlab-osgi</artifactId> |
| 71 | <version>${onos.version}</version> |
| 72 | </dependency> |
| 73 | |
| 74 | <dependency> |
| 75 | <groupId>junit</groupId> |
| 76 | <artifactId>junit</artifactId> |
| 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>org.onosproject</groupId> |
| 82 | <artifactId>onlab-junit</artifactId> |
| 83 | <version>${onos.version}</version> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
Amit Ghosh | a17354e | 2017-08-23 12:56:04 +0100 | [diff] [blame] | 86 | <dependency> |
| 87 | <groupId>org.onosproject</groupId> |
| 88 | <artifactId>onos-cli</artifactId> |
| 89 | <version>${onos.version}</version> |
| 90 | </dependency> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 91 | |
| 92 | <dependency> |
| 93 | <groupId>org.onosproject</groupId> |
| 94 | <artifactId>onos-api</artifactId> |
| 95 | <version>${onos.version}</version> |
| 96 | <scope>test</scope> |
| 97 | <classifier>tests</classifier> |
| 98 | </dependency> |
| 99 | |
| 100 | <dependency> |
| 101 | <groupId>org.apache.felix</groupId> |
| 102 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 103 | <scope>provided</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.osgi</groupId> |
| 107 | <artifactId>org.osgi.compendium</artifactId> |
| 108 | </dependency> |
Amit Ghosh | 8951f04 | 2017-08-10 13:48:10 +0100 | [diff] [blame] | 109 | <dependency> |
| 110 | <groupId>org.onosproject</groupId> |
| 111 | <artifactId>onlab-osgi</artifactId> |
| 112 | <version>${onos.version}</version> |
| 113 | <classifier>tests</classifier> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.easymock</groupId> |
| 118 | <artifactId>easymock</artifactId> |
| 119 | <scope>test</scope> |
| 120 | </dependency> |
Amit Ghosh | 47243cb | 2017-07-26 05:08:53 +0100 | [diff] [blame] | 121 | </dependencies> |
| 122 | |
| 123 | <build> |
| 124 | <plugins> |
| 125 | <plugin> |
| 126 | <groupId>org.apache.felix</groupId> |
| 127 | <artifactId>maven-bundle-plugin</artifactId> |
| 128 | </plugin> |
| 129 | |
| 130 | <plugin> |
| 131 | <groupId>org.apache.felix</groupId> |
| 132 | <artifactId>maven-scr-plugin</artifactId> |
| 133 | </plugin> |
| 134 | |
| 135 | <plugin> |
| 136 | <groupId>org.onosproject</groupId> |
| 137 | <artifactId>onos-maven-plugin</artifactId> |
| 138 | </plugin> |
| 139 | </plugins> |
| 140 | </build> |
| 141 | |
| 142 | <repositories> |
| 143 | <repository> |
| 144 | <id>central</id> |
| 145 | <name>Central Repository</name> |
| 146 | <url>http://repo.maven.apache.org/maven2</url> |
| 147 | <layout>default</layout> |
| 148 | <snapshots> |
| 149 | <enabled>false</enabled> |
| 150 | </snapshots> |
| 151 | <releases> |
| 152 | <enabled>true</enabled> |
| 153 | <updatePolicy>always</updatePolicy> |
| 154 | <checksumPolicy>fail</checksumPolicy> |
| 155 | </releases> |
| 156 | </repository> |
| 157 | |
| 158 | <repository> |
| 159 | <id>snapshots</id> |
| 160 | <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 161 | <snapshots> |
| 162 | <enabled>true</enabled> |
| 163 | <updatePolicy>always</updatePolicy> |
| 164 | <checksumPolicy>fail</checksumPolicy> |
| 165 | </snapshots> |
| 166 | </repository> |
| 167 | </repositories> |
| 168 | </project> |