BUG-5626: use lambdas, Runnable and Consumer instead of Procedure
[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.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.7.0-SNAPSHOT</version>
9     <relativePath>../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>blueprint</artifactId>
13   <packaging>bundle</packaging>
14   <name>${project.artifactId}</name>
15   <version>0.5.0-SNAPSHOT</version>
16
17   <dependencies>
18     <dependency>
19       <groupId>com.google.guava</groupId>
20       <artifactId>guava</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.apache.aries.blueprint</groupId>
24       <artifactId>org.apache.aries.blueprint.core</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>sal-binding-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.controller</groupId>
32       <artifactId>sal-core-api</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.mdsal</groupId>
36       <artifactId>mdsal-binding-dom-codec</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.osgi</groupId>
40       <artifactId>org.osgi.core</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.osgi</groupId>
44       <artifactId>org.osgi.compendium</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.slf4j</groupId>
48       <artifactId>slf4j-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53       <scope>test</scope>
54     </dependency>
55   </dependencies>
56
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.felix</groupId>
61         <artifactId>maven-bundle-plugin</artifactId>
62         <configuration>
63           <instructions>
64             <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
65           </instructions>
66         </configuration>
67       </plugin>
68     </plugins>
69   </build>
70
71 </project>