Bump versions to 4.0.7-SNAPSHOT
[odlparent.git] / bundles4-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>4.0.7-SNAPSHOT</version>
18     <relativePath>../bundle-parent</relativePath>
19   </parent>
20
21   <artifactId>bundles4-test</artifactId>
22   <packaging>bundle</packaging>
23   <name>ODL :: odlparent :: ${project.artifactId}</name>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.odlparent</groupId>
28       <artifactId>bundles-test-lib</artifactId>
29       <version>${project.version}</version>
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>provided</scope>
36     </dependency>
37     <dependency>
38       <groupId>org.osgi</groupId>
39       <artifactId>org.osgi.core</artifactId>
40       <scope>provided</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.hamcrest</groupId>
44       <artifactId>hamcrest-core</artifactId>
45       <scope>compile</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.awaitility</groupId>
49       <artifactId>awaitility</artifactId>
50       <scope>compile</scope>
51       <exclusions>
52         <exclusion>
53           <groupId>cglib</groupId>
54           <artifactId>cglib-nodep</artifactId>
55         </exclusion>
56         <exclusion>
57           <groupId>org.objenesis</groupId>
58           <artifactId>objenesis</artifactId>
59         </exclusion>
60       </exclusions>
61     </dependency>
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <configuration>
70           <instructions>
71             <Embed-Dependency>*;scope=compile</Embed-Dependency>
72             <Embed-Transitive>true</Embed-Transitive>
73             <Import-Package>!net.sf.cglib.proxy,!org.objenesis,*</Import-Package>
74             <_exportcontents>org.opendaylight.odlparent.bundlestest.lib.*</_exportcontents>
75           </instructions>
76         </configuration>
77       </plugin>
78       <plugin>
79         <artifactId>maven-checkstyle-plugin</artifactId>
80         <configuration>
81           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
82         </configuration>
83       </plugin>
84       <plugin>
85         <groupId>com.github.spotbugs</groupId>
86         <artifactId>spotbugs-maven-plugin</artifactId>
87         <configuration>
88           <failOnError>true</failOnError>
89         </configuration>
90       </plugin>
91     </plugins>
92   </build>
93
94 </project>