Bump versions by x.y.(z+1)
[odlparent.git] / bundles-test / 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>bundle-parent</artifactId>
17     <version>1.8.3-SNAPSHOT</version>
18     <relativePath>../bundle-parent</relativePath>
19   </parent>
20
21   <artifactId>bundles-test</artifactId>
22   <packaging>bundle</packaging>
23   <name>ODL :: odlparent :: ${project.artifactId}</name>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.osgi</groupId>
28       <artifactId>org.osgi.core</artifactId>
29       <scope>compile</scope>
30     </dependency>
31     <dependency>
32       <groupId>org.apache.karaf.bundle</groupId>
33       <artifactId>org.apache.karaf.bundle.core</artifactId>
34       <version>${karaf.version}</version>
35       <scope>compile</scope>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>compile</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.hamcrest</groupId>
44       <artifactId>hamcrest-library</artifactId>
45       <scope>compile</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.hamcrest</groupId>
49       <artifactId>hamcrest-core</artifactId>
50       <scope>compile</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.awaitility</groupId>
54       <artifactId>awaitility</artifactId>
55       <scope>compile</scope>
56     </dependency>
57     <dependency>
58       <groupId>com.google.guava</groupId>
59       <artifactId>guava</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>com.google.truth</groupId>
63       <artifactId>truth</artifactId>
64       <scope>test</scope>
65     </dependency>
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <artifactId>maven-checkstyle-plugin</artifactId>
72         <configuration>
73           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
74         </configuration>
75       </plugin>
76       <plugin>
77         <groupId>org.codehaus.mojo</groupId>
78         <artifactId>findbugs-maven-plugin</artifactId>
79         <configuration>
80           <failOnError>true</failOnError>
81         </configuration>
82       </plugin>
83     </plugins>
84   </build>
85
86   <!--
87     Maven Site Configuration
88
89     The following configuration is necessary for maven-site-plugin to
90     correctly identify the correct deployment path for OpenDaylight Maven
91     sites.
92   -->
93   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
94
95   <distributionManagement>
96     <site>
97       <id>opendaylight-site</id>
98       <url>${nexus.site.url}/${project.artifactId}/</url>
99     </site>
100   </distributionManagement>
101
102 </project>