blob: 24ae825776a34b5c48c6660bd495bcedbf1b2c02 [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>
Gamze Abaka4f722612019-04-24 12:28:10 +000023 <version>1.13.9-rc4</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010024 <relativePath></relativePath>
25 </parent>
26
27 <groupId>org.opencord</groupId>
28 <artifactId>dhcpl2relay</artifactId>
Gamze Abakac806c6c2018-12-03 12:49:46 +000029 <version>1.6.0-SNAPSHOT</version>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070030 <packaging>pom</packaging>
Amit Ghosh47243cb2017-07-26 05:08:53 +010031
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>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070037 <onos.version>1.13.9-rc4</onos.version>
Author Name8c2895f2017-09-13 14:58:09 +053038 <onos.app.requires>
39 org.opencord.sadis
40 </onos.app.requires>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070041 <sadis.api.version>3.0.0</sadis.api.version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010042 </properties>
43
Matteo Scandolo57af5d12019-04-29 17:11:41 -070044 <modules>
45 <module>app</module>
46 <module>api</module>
47 </modules>
48
Amit Ghosh47243cb2017-07-26 05:08:53 +010049 <dependencies>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 <version>${onos.version}</version>
54 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +010055 <dependency>
56 <groupId>org.opencord</groupId>
Deepa vaddireddy0060f532017-08-04 06:46:05 +000057 <artifactId>sadis-api</artifactId>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070058 <version>${sadis.api.version}</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010059 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +010060 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onos-incubator-api</artifactId>
63 <version>${onos.version}</version>
64 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +010065 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onlab-osgi</artifactId>
68 <version>${onos.version}</version>
69 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +010070 <dependency>
71 <groupId>junit</groupId>
72 <artifactId>junit</artifactId>
73 <scope>test</scope>
74 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +010075 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onlab-junit</artifactId>
78 <version>${onos.version}</version>
79 <scope>test</scope>
80 </dependency>
Amit Ghosha17354e2017-08-23 12:56:04 +010081 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onos-cli</artifactId>
84 <version>${onos.version}</version>
85 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +010086 <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>
Amit Ghosh47243cb2017-07-26 05:08:53 +010093 <dependency>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>org.apache.felix.scr.annotations</artifactId>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.osgi</groupId>
100 <artifactId>org.osgi.compendium</artifactId>
101 </dependency>
Amit Ghosh8951f042017-08-10 13:48:10 +0100102 <dependency>
103 <groupId>org.onosproject</groupId>
104 <artifactId>onlab-osgi</artifactId>
105 <version>${onos.version}</version>
106 <classifier>tests</classifier>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.easymock</groupId>
111 <artifactId>easymock</artifactId>
112 <scope>test</scope>
113 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +0100114 </dependencies>
115
116 <build>
117 <plugins>
118 <plugin>
119 <groupId>org.apache.felix</groupId>
120 <artifactId>maven-bundle-plugin</artifactId>
121 </plugin>
122
123 <plugin>
124 <groupId>org.apache.felix</groupId>
125 <artifactId>maven-scr-plugin</artifactId>
126 </plugin>
127
128 <plugin>
129 <groupId>org.onosproject</groupId>
130 <artifactId>onos-maven-plugin</artifactId>
Jonathan Hartedbf6422018-05-02 17:30:05 -0700131 <version>1.11</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +0100132 </plugin>
133 </plugins>
134 </build>
135
136 <repositories>
137 <repository>
138 <id>central</id>
139 <name>Central Repository</name>
140 <url>http://repo.maven.apache.org/maven2</url>
141 <layout>default</layout>
142 <snapshots>
143 <enabled>false</enabled>
144 </snapshots>
145 <releases>
146 <enabled>true</enabled>
147 <updatePolicy>always</updatePolicy>
148 <checksumPolicy>fail</checksumPolicy>
149 </releases>
150 </repository>
151
152 <repository>
153 <id>snapshots</id>
154 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
155 <snapshots>
156 <enabled>true</enabled>
157 <updatePolicy>always</updatePolicy>
158 <checksumPolicy>fail</checksumPolicy>
159 </snapshots>
160 </repository>
161 </repositories>
162</project>