1ecc018f1e943e17265a3368f1015ecfb41ec7c5
[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.8.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.6.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>config-manager-facade-xml</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-core-api</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.mdsal</groupId>
40       <artifactId>mdsal-binding-dom-codec</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.osgi</groupId>
44       <artifactId>org.osgi.core</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.osgi</groupId>
48       <artifactId>org.osgi.compendium</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.slf4j</groupId>
52       <artifactId>slf4j-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57       <scope>test</scope>
58     </dependency>
59   </dependencies>
60
61   <build>
62     <plugins>
63       <plugin>
64         <groupId>org.apache.felix</groupId>
65         <artifactId>maven-bundle-plugin</artifactId>
66         <configuration>
67           <instructions>
68             <Bundle-Activator>org.opendaylight.controller.blueprint.BlueprintBundleTracker</Bundle-Activator>
69           </instructions>
70         </configuration>
71       </plugin>
72     </plugins>
73   </build>
74
75 </project>