blob: 6a264d40d2a858c663c7a01a0c672b394366c2c6 [file] [log] [blame]
Amit Ghosh47243cb2017-07-26 05:08:53 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Deepa vaddireddy0060f532017-08-04 06:46:05 +00003 ~ Copyright 2016-present Open Networking Foundation
Amit Ghosh47243cb2017-07-26 05:08:53 +01004 ~
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. Bainbridge7e51abc2017-09-07 14:00:30 -070023 <version>1.10.6</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010024 <relativePath></relativePath>
25 </parent>
26
27 <groupId>org.opencord</groupId>
28 <artifactId>dhcpl2relay</artifactId>
David K. Bainbridge4f86d422017-09-08 11:22:42 -070029 <version>1.1.0</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010030 <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. Bainbridge7e51abc2017-09-07 14:00:30 -070043 <onos.version>1.10.6</onos.version>
David K. Bainbridge4f86d422017-09-08 11:22:42 -070044 <sadis.api.version>1.1.0</sadis.api.version>
David K. Bainbridgec6cf1682017-08-17 09:54:40 -070045 <!-- 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 Ghosh47243cb2017-07-26 05:08:53 +010047 </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 vaddireddy0060f532017-08-04 06:46:05 +000058 <artifactId>sadis-api</artifactId>
David K. Bainbridge03329de2017-08-10 10:39:09 -070059 <version>${sadis.api.version}</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010060 </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 Ghosha17354e2017-08-23 12:56:04 +010086 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onos-cli</artifactId>
89 <version>${onos.version}</version>
90 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +010091
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 Ghosh8951f042017-08-10 13:48:10 +0100109 <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 Ghosh47243cb2017-07-26 05:08:53 +0100121 </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>