blob: 5719818f0108e8dda563480eed6acb8eced78440 [file] [log] [blame]
Brian O'Connor42c38cf2016-04-05 17:05:57 -07001<?xml version="1.0" encoding="UTF-8"?>
Brian O'Connor7cbbbb72016-04-09 02:13:23 -07002<!--
3 ~ Copyright 2016-present Open Networking Laboratory
4 ~
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 -->
Brian O'Connor42c38cf2016-04-05 17:05:57 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <parent>
21 <artifactId>onlab-utils</artifactId>
22 <groupId>org.onosproject</groupId>
Ray Milkey287b4ae2017-01-19 15:21:17 -080023 <version>1.9.0-SNAPSHOT</version>
Brian O'Connor42c38cf2016-04-05 17:05:57 -070024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>osgiwrap</artifactId>
28 <version>0.9-SNAPSHOT</version>
29
Brian O'Connor4408c642016-11-18 17:00:44 -080030 <repositories>
31 <repository>
32 <id>snapshots</id>
33 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
34 <snapshots>
35 <enabled>true</enabled>
36 <updatePolicy>daily</updatePolicy>
37 <checksumPolicy>fail</checksumPolicy>
38 </snapshots>
39 </repository>
40 </repositories>
41
Brian O'Connor42c38cf2016-04-05 17:05:57 -070042 <dependencies>
43 <!-- TODO update this to org.apache.felix when changes are merged upstream -->
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>org.apache.felix.scr.bnd</artifactId>
47 <version>1.4.1-SNAPSHOT</version>
48 </dependency>
49
50 <dependency>
51 <groupId>biz.aQute.bnd</groupId>
52 <artifactId>biz.aQute.bndlib</artifactId>
53 <version>3.1.0</version>
54 </dependency>
55 <dependency>
56 <groupId>com.google.guava</groupId>
57 <artifactId>guava</artifactId>
Brian O'Connor42c38cf2016-04-05 17:05:57 -070058 </dependency>
59 </dependencies>
60</project>