Release odlparent
[odlparent.git] / bundles-test-lib / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Red Hat, Inc. and others. All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>bnd-parent</artifactId>
17     <version>13.0.9</version>
18     <relativePath>../bnd-parent</relativePath>
19   </parent>
20
21   <artifactId>bundles-test-lib</artifactId>
22   <name>ODL :: odlparent :: ${project.artifactId}</name>
23   <packaging>jar</packaging>
24
25   <properties>
26     <!-- Opt-in to our optional code quality checks -->
27     <duplicate-finder.skip>false</duplicate-finder.skip> <!-- Classpath duplicates -->
28   </properties>
29
30   <dependencies>
31     <dependency>
32       <groupId>org.apache.karaf.bundle</groupId>
33       <artifactId>org.apache.karaf.bundle.core</artifactId>
34       <scope>provided</scope>
35     </dependency>
36     <dependency>
37       <groupId>org.osgi</groupId>
38       <artifactId>org.osgi.framework</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.hamcrest</groupId>
42       <artifactId>hamcrest</artifactId>
43       <scope>compile</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.awaitility</groupId>
47       <artifactId>awaitility</artifactId>
48       <scope>compile</scope>
49       <exclusions>
50         <exclusion>
51           <groupId>cglib</groupId>
52           <artifactId>cglib-nodep</artifactId>
53         </exclusion>
54         <exclusion>
55           <groupId>org.objenesis</groupId>
56           <artifactId>objenesis</artifactId>
57         </exclusion>
58       </exclusions>
59     </dependency>
60     <dependency>
61       <groupId>org.eclipse.jdt</groupId>
62       <artifactId>org.eclipse.jdt.annotation</artifactId>
63     </dependency>
64   </dependencies>
65 </project>