blob: 1c3440e588438717f393a518668181ddf7568439 [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. Bainbridgec6cf1682017-08-17 09:54:40 -070023 <version>1.10.3</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. Bainbridgec6cf1682017-08-17 09:54:40 -070029 <version>1.1.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. Bainbridgec6cf1682017-08-17 09:54:40 -070043 <onos.version>1.10.3</onos.version>
44 <sadis.api.version>1.1.0-SNAPSHOT</sadis.api.version>
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 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>
86
87 <dependency>
88 <groupId>org.onosproject</groupId>
89 <artifactId>onos-api</artifactId>
90 <version>${onos.version}</version>
91 <scope>test</scope>
92 <classifier>tests</classifier>
93 </dependency>
94
95 <dependency>
96 <groupId>org.apache.felix</groupId>
97 <artifactId>org.apache.felix.scr.annotations</artifactId>
98 <scope>provided</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.osgi</groupId>
102 <artifactId>org.osgi.compendium</artifactId>
103 </dependency>
Amit Ghosh8951f042017-08-10 13:48:10 +0100104 <dependency>
105 <groupId>org.onosproject</groupId>
106 <artifactId>onlab-osgi</artifactId>
107 <version>${onos.version}</version>
108 <classifier>tests</classifier>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.easymock</groupId>
113 <artifactId>easymock</artifactId>
114 <scope>test</scope>
115 </dependency>
Amit Ghosh47243cb2017-07-26 05:08:53 +0100116 </dependencies>
117
118 <build>
119 <plugins>
120 <plugin>
121 <groupId>org.apache.felix</groupId>
122 <artifactId>maven-bundle-plugin</artifactId>
123 </plugin>
124
125 <plugin>
126 <groupId>org.apache.felix</groupId>
127 <artifactId>maven-scr-plugin</artifactId>
128 </plugin>
129
130 <plugin>
131 <groupId>org.onosproject</groupId>
132 <artifactId>onos-maven-plugin</artifactId>
133 </plugin>
134 </plugins>
135 </build>
136
137 <repositories>
138 <repository>
139 <id>central</id>
140 <name>Central Repository</name>
141 <url>http://repo.maven.apache.org/maven2</url>
142 <layout>default</layout>
143 <snapshots>
144 <enabled>false</enabled>
145 </snapshots>
146 <releases>
147 <enabled>true</enabled>
148 <updatePolicy>always</updatePolicy>
149 <checksumPolicy>fail</checksumPolicy>
150 </releases>
151 </repository>
152
153 <repository>
154 <id>snapshots</id>
155 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
156 <snapshots>
157 <enabled>true</enabled>
158 <updatePolicy>always</updatePolicy>
159 <checksumPolicy>fail</checksumPolicy>
160 </snapshots>
161 </repository>
162 </repositories>
163</project>