BUG-7608: activate action-service element
[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       <version>1.7.1</version>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal-binding-api</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>config-manager-facade-xml</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-core-api</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-core-spi</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.mdsal</groupId>
72       <artifactId>mdsal-binding-dom-codec</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.osgi</groupId>
76       <artifactId>org.osgi.core</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.osgi</groupId>
80       <artifactId>org.osgi.compendium</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.slf4j</groupId>
84       <artifactId>slf4j-api</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.osgi</groupId>
88       <artifactId>org.osgi.service.event</artifactId>
89       <version>1.3.1</version>
90     </dependency>
91     <dependency>
92       <groupId>junit</groupId>
93       <artifactId>junit</artifactId>
94       <scope>test</scope>
95     </dependency>
96   </dependencies>
97
98   <build>
99     <plugins>
100       <plugin>
101         <groupId>org.apache.felix</groupId>
102         <artifactId>maven-bundle-plugin</artifactId>
103         <configuration>
104           <instructions>
105             <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
106           </instructions>
107         </configuration>
108       </plugin>
109       <plugin>
110         <groupId>org.apache.maven.plugins</groupId>
111         <artifactId>maven-checkstyle-plugin</artifactId>
112         <configuration>
113           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
114         </configuration>
115       </plugin>
116       <plugin>
117         <groupId>org.codehaus.mojo</groupId>
118         <artifactId>findbugs-maven-plugin</artifactId>
119         <configuration>
120           <failOnError>true</failOnError>
121         </configuration>
122       </plugin>
123     </plugins>
124   </build>
125
126 </project>