blob: 0a8408258e60a40bfc2b5c3f2f50b2d149900573 [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>
Deepa vaddireddy0060f532017-08-04 06:46:05 +000023 <version>1.8.0</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. Bainbridge1cae0f62017-08-09 11:30:39 -070029 <version>1.0.0-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>
David K. Bainbridge03329de2017-08-10 10:39:09 -070043 <onos.version>1.8.0</onos.version>
44 <sadis.api.version>1.0.0-SNAPSHOT</sadis.api.version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010045 </properties>
46
47 <dependencies>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-api</artifactId>
51 <version>${onos.version}</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.opencord</groupId>
Deepa vaddireddy0060f532017-08-04 06:46:05 +000056 <artifactId>sadis-api</artifactId>
David K. Bainbridge03329de2017-08-10 10:39:09 -070057 <version>${sadis.api.version}</version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010058 </dependency>
59
60 <dependency>
61 <groupId>org.onosproject</groupId>
62 <artifactId>onos-incubator-api</artifactId>
63 <version>${onos.version}</version>
64 </dependency>
65
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onlab-osgi</artifactId>
69 <version>${onos.version}</version>
70 </dependency>
71
72 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
75 <scope>test</scope>
76 </dependency>
77
78 <dependency>
79 <groupId>org.onosproject</groupId>
80 <artifactId>onlab-junit</artifactId>
81 <version>${onos.version}</version>
82 <scope>test</scope>
83 </dependency>
84
85 <dependency>
86 <groupId>org.onosproject</groupId>
87 <artifactId>onos-api</artifactId>
88 <version>${onos.version}</version>
89 <scope>test</scope>
90 <classifier>tests</classifier>
91 </dependency>
92
93 <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>
131 </plugin>
132 </plugins>
133 </build>
134
135 <repositories>
136 <repository>
137 <id>central</id>
138 <name>Central Repository</name>
139 <url>http://repo.maven.apache.org/maven2</url>
140 <layout>default</layout>
141 <snapshots>
142 <enabled>false</enabled>
143 </snapshots>
144 <releases>
145 <enabled>true</enabled>
146 <updatePolicy>always</updatePolicy>
147 <checksumPolicy>fail</checksumPolicy>
148 </releases>
149 </repository>
150
151 <repository>
152 <id>snapshots</id>
153 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
154 <snapshots>
155 <enabled>true</enabled>
156 <updatePolicy>always</updatePolicy>
157 <checksumPolicy>fail</checksumPolicy>
158 </snapshots>
159 </repository>
160 </repositories>
161</project>