BUG-5280: fix InversibleLock race
[controller.git] / opendaylight / blueprint / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>bundle-parent</artifactId>
8     <version>1.8.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.controller</groupId>
13   <artifactId>blueprint</artifactId>
14   <packaging>bundle</packaging>
15   <name>${project.artifactId}</name>
16   <version>0.6.0-SNAPSHOT</version>
17
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>org.opendaylight.mdsal</groupId>
22         <artifactId>mdsal-artifacts</artifactId>
23         <version>2.2.0-SNAPSHOT</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27       <dependency>
28         <groupId>org.opendaylight.controller</groupId>
29         <artifactId>config-artifacts</artifactId>
30         <version>0.6.0-SNAPSHOT</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.controller</groupId>
36         <artifactId>mdsal-artifacts</artifactId>
37         <version>1.5.0-SNAPSHOT</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41     </dependencies>
42   </dependencyManagement>
43
44   <dependencies>
45     <dependency>
46       <groupId>com.google.guava</groupId>
47       <artifactId>guava</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.apache.aries.blueprint</groupId>
51       <artifactId>org.apache.aries.blueprint.core</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal-binding-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>config-manager-facade-xml</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal-core-api</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.mdsal</groupId>
67       <artifactId>mdsal-binding-dom-codec</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.osgi</groupId>
71       <artifactId>org.osgi.core</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.osgi</groupId>
75       <artifactId>org.osgi.compendium</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.slf4j</groupId>
79       <artifactId>slf4j-api</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>junit</groupId>
83       <artifactId>junit</artifactId>
84       <scope>test</scope>
85     </dependency>
86   </dependencies>
87
88   <build>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <configuration>
94           <instructions>
95             <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
96           </instructions>
97         </configuration>
98       </plugin>
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-checkstyle-plugin</artifactId>
102         <configuration>
103           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
104         </configuration>
105       </plugin>
106       <plugin>
107         <groupId>org.codehaus.mojo</groupId>
108         <artifactId>findbugs-maven-plugin</artifactId>
109         <configuration>
110           <failOnError>true</failOnError>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115
116 </project>