Add blueprint extension to register notification listener
[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       <version>1.4.2</version>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-binding-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.osgi</groupId>
33       <artifactId>org.osgi.core</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.osgi</groupId>
37       <artifactId>org.osgi.compendium</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.slf4j</groupId>
41       <artifactId>slf4j-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>junit</groupId>
45       <artifactId>junit</artifactId>
46       <scope>test</scope>
47     </dependency>
48   </dependencies>
49
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.felix</groupId>
54         <artifactId>maven-bundle-plugin</artifactId>
55         <configuration>
56           <instructions>
57             <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
58           </instructions>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63
64 </project>