blob: 67a6146ab0e76505e93e15c8fae1bd1bb75ea0d3 [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. Bainbridgeff5c77d2017-08-15 15:25:49 -070023 <version>1.8.9</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. Bainbridgeff5c77d2017-08-15 15:25:49 -070029 <version>1.0.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. Bainbridgeff5c77d2017-08-15 15:25:49 -070043 <onos.version>1.8.9</onos.version>
44 <sadis.api.version>1.0.0</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>
102 </dependencies>
103
104 <build>
105 <plugins>
106 <plugin>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>maven-bundle-plugin</artifactId>
109 </plugin>
110
111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-scr-plugin</artifactId>
114 </plugin>
115
116 <plugin>
117 <groupId>org.onosproject</groupId>
118 <artifactId>onos-maven-plugin</artifactId>
119 </plugin>
120 </plugins>
121 </build>
122
123 <repositories>
124 <repository>
125 <id>central</id>
126 <name>Central Repository</name>
127 <url>http://repo.maven.apache.org/maven2</url>
128 <layout>default</layout>
129 <snapshots>
130 <enabled>false</enabled>
131 </snapshots>
132 <releases>
133 <enabled>true</enabled>
134 <updatePolicy>always</updatePolicy>
135 <checksumPolicy>fail</checksumPolicy>
136 </releases>
137 </repository>
138
139 <repository>
140 <id>snapshots</id>
141 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
142 <snapshots>
143 <enabled>true</enabled>
144 <updatePolicy>always</updatePolicy>
145 <checksumPolicy>fail</checksumPolicy>
146 </snapshots>
147 </repository>
148 </repositories>
149</project>