blob: f2ad5eecd324229ace8cf3d57621650efa8e9c49 [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. Bainbridgeb2df9582017-11-01 10:26:26 -070023 <version>1.10.9</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010024 <relativePath></relativePath>
25 </parent>
26
27 <groupId>org.opencord</groupId>
28 <artifactId>dhcpl2relay</artifactId>
Jenkins6bc31252018-01-12 11:17:41 -080029 <version>1.3.1-SNAPSHOT</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>
Author Name8c2895f2017-09-13 14:58:09 +053043 <onos.app.requires>
44 org.opencord.sadis
45 </onos.app.requires>
David K. Bainbridgeb2df9582017-11-01 10:26:26 -070046 <onos.version>1.10.9</onos.version>
David K. Bainbridge26466eb2018-01-12 11:08:02 -080047 <sadis.api.version>2.0.0</sadis.api.version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010048 </properties>
49
50 <dependencies>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 <version>${onos.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>org.opencord</groupId>
Deepa vaddireddy0060f532017-08-04 06:46:05 +000059 <artifactId>sadis-api</artifactId>
David K. Bainbridge03329de2017-08-10 10:39:09 -070060 <version>${sadis.api.version}</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010061 </dependency>
62
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onos-incubator-api</artifactId>
66 <version>${onos.version}</version>
67 </dependency>
68
69 <dependency>
70 <groupId>org.onosproject</groupId>
71 <artifactId>onlab-osgi</artifactId>
72 <version>${onos.version}</version>
73 </dependency>
74
75 <dependency>
76 <groupId>junit</groupId>
77 <artifactId>junit</artifactId>
78 <scope>test</scope>
79 </dependency>
80
81 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onlab-junit</artifactId>
84 <version>${onos.version}</version>
85 <scope>test</scope>
86 </dependency>
Amit Ghosha17354e2017-08-23 12:56:04 +010087 <dependency>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onos-cli</artifactId>
90 <version>${onos.version}</version>
91 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +010092
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.apache.felix</groupId>
103 <artifactId>org.apache.felix.scr.annotations</artifactId>
104 <scope>provided</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.osgi</groupId>
108 <artifactId>org.osgi.compendium</artifactId>
109 </dependency>
Amit Ghosh8951f042017-08-10 13:48:10 +0100110 <dependency>
111 <groupId>org.onosproject</groupId>
112 <artifactId>onlab-osgi</artifactId>
113 <version>${onos.version}</version>
114 <classifier>tests</classifier>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.easymock</groupId>
119 <artifactId>easymock</artifactId>
120 <scope>test</scope>
121 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +0100122 </dependencies>
123
124 <build>
125 <plugins>
126 <plugin>
127 <groupId>org.apache.felix</groupId>
128 <artifactId>maven-bundle-plugin</artifactId>
129 </plugin>
130
131 <plugin>
132 <groupId>org.apache.felix</groupId>
133 <artifactId>maven-scr-plugin</artifactId>
134 </plugin>
135
136 <plugin>
137 <groupId>org.onosproject</groupId>
138 <artifactId>onos-maven-plugin</artifactId>
139 </plugin>
140 </plugins>
141 </build>
142
143 <repositories>
144 <repository>
145 <id>central</id>
146 <name>Central Repository</name>
147 <url>http://repo.maven.apache.org/maven2</url>
148 <layout>default</layout>
149 <snapshots>
150 <enabled>false</enabled>
151 </snapshots>
152 <releases>
153 <enabled>true</enabled>
154 <updatePolicy>always</updatePolicy>
155 <checksumPolicy>fail</checksumPolicy>
156 </releases>
157 </repository>
158
159 <repository>
160 <id>snapshots</id>
161 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
162 <snapshots>
163 <enabled>true</enabled>
164 <updatePolicy>always</updatePolicy>
165 <checksumPolicy>fail</checksumPolicy>
166 </snapshots>
167 </repository>
168 </repositories>
169</project>