Bump odlparent for next dev cycle
[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>odlparent</artifactId>
17     <version>1.9.1-SNAPSHOT</version>
18     <relativePath>../odlparent</relativePath>
19   </parent>
20
21   <artifactId>bundles-test-lib</artifactId>
22   <name>ODL :: odlparent :: ${project.artifactId}</name>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.osgi</groupId>
27       <artifactId>org.osgi.core</artifactId>
28       <scope>provided</scope>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.karaf.bundle</groupId>
32       <artifactId>org.apache.karaf.bundle.core</artifactId>
33       <!-- karaf.version & karaf4.version are API compatible (for karaf.bundle.core) -->
34       <version>${karaf.version}</version>
35       <scope>provided</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.hamcrest</groupId>
39       <artifactId>hamcrest-core</artifactId>
40       <scope>compile</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.awaitility</groupId>
44       <artifactId>awaitility</artifactId>
45       <scope>compile</scope>
46       <exclusions>
47         <exclusion>
48           <groupId>cglib</groupId>
49           <artifactId>cglib-nodep</artifactId>
50         </exclusion>
51         <exclusion>
52           <groupId>org.objenesis</groupId>
53           <artifactId>objenesis</artifactId>
54         </exclusion>
55       </exclusions>
56     </dependency>
57     <!-- BEWARE of adding additional dependencies here...
58          It will cause weird issues e.g. in integration/distribution/features/repos/distribution -->
59     <dependency>
60       <groupId>com.google.truth</groupId>
61       <artifactId>truth</artifactId>
62       <scope>test</scope>
63     </dependency>
64   </dependencies>
65
66   <build>
67     <plugins>
68       <plugin>
69         <artifactId>maven-checkstyle-plugin</artifactId>
70         <configuration>
71           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
72         </configuration>
73       </plugin>
74       <plugin>
75         <groupId>org.codehaus.mojo</groupId>
76         <artifactId>findbugs-maven-plugin</artifactId>
77         <configuration>
78           <failOnError>true</failOnError>
79         </configuration>
80       </plugin>
81     </plugins>
82   </build>
83
84   <!--
85     Maven Site Configuration
86
87     The following configuration is necessary for maven-site-plugin to
88     correctly identify the correct deployment path for OpenDaylight Maven
89     sites.
90   -->
91   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
92
93   <distributionManagement>
94     <site>
95       <id>opendaylight-site</id>
96       <url>${nexus.site.url}/${project.artifactId}/</url>
97     </site>
98   </distributionManagement>
99
100 </project>