blob: 62950c620fa94e040d0ba3f7e0c3b3262ec3b4e3 [file] [log] [blame]
Amit Ghosh47243cb2017-07-26 05:08:53 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor10570622017-08-03 22:45:53 -07003 ~ 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>
23 <version>1.10.0</version>
24 <relativePath></relativePath>
25 </parent>
26
27 <groupId>org.opencord</groupId>
28 <artifactId>dhcpl2relay</artifactId>
29 <version>1.2-SNAPSHOT</version>
30 <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>
43 <onos.version>1.10.0</onos.version>
44 </properties>
45
46 <dependencies>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
50 <version>${onos.version}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.opencord</groupId>
55 <artifactId>sadis</artifactId>
56 <version>1.0.0</version>
57 </dependency>
58
59 <dependency>
60 <groupId>org.onosproject</groupId>
61 <artifactId>onos-incubator-api</artifactId>
62 <version>${onos.version}</version>
63 </dependency>
64
65 <dependency>
66 <groupId>org.onosproject</groupId>
67 <artifactId>onlab-osgi</artifactId>
68 <version>${onos.version}</version>
69 </dependency>
70
71 <dependency>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
74 <scope>test</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onlab-junit</artifactId>
80 <version>${onos.version}</version>
81 <scope>test</scope>
82 </dependency>
83
84 <dependency>
85 <groupId>org.onosproject</groupId>
86 <artifactId>onos-api</artifactId>
87 <version>${onos.version}</version>
88 <scope>test</scope>
89 <classifier>tests</classifier>
90 </dependency>
91
92 <dependency>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>org.apache.felix.scr.annotations</artifactId>
95 <scope>provided</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.osgi</groupId>
99 <artifactId>org.osgi.compendium</artifactId>
100 </dependency>
101 </dependencies>
102
103 <build>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.felix</groupId>
107 <artifactId>maven-bundle-plugin</artifactId>
108 </plugin>
109
110 <plugin>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>maven-scr-plugin</artifactId>
113 </plugin>
114
115 <plugin>
116 <groupId>org.onosproject</groupId>
117 <artifactId>onos-maven-plugin</artifactId>
118 </plugin>
119 </plugins>
120 </build>
121
122 <repositories>
123 <repository>
124 <id>central</id>
125 <name>Central Repository</name>
126 <url>http://repo.maven.apache.org/maven2</url>
127 <layout>default</layout>
128 <snapshots>
129 <enabled>false</enabled>
130 </snapshots>
131 <releases>
132 <enabled>true</enabled>
133 <updatePolicy>always</updatePolicy>
134 <checksumPolicy>fail</checksumPolicy>
135 </releases>
136 </repository>
137
138 <repository>
139 <id>snapshots</id>
140 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
141 <snapshots>
142 <enabled>true</enabled>
143 <updatePolicy>always</updatePolicy>
144 <checksumPolicy>fail</checksumPolicy>
145 </snapshots>
146 </repository>
147 </repositories>
148</project>