Merge "creating a default subnet"
[controller.git] / opendaylight / md-sal / clustered-data-store / implementation / 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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7       <artifactId>sal-parent</artifactId>
8       <version>1.0-SNAPSHOT</version>
9       <relativePath>../..</relativePath>
10   </parent>
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15     <tag>HEAD</tag>
16   </scm>
17
18   <artifactId>clustered-datastore-implementation</artifactId>
19   <version>0.4.1-SNAPSHOT</version>
20   <packaging>bundle</packaging>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.felix</groupId>
26         <artifactId>maven-bundle-plugin</artifactId>
27         <version>${bundle.plugin.version}</version>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Export-Package>
32             </Export-Package>
33             <Import-Package>
34               javax.xml.bind.annotation,
35               org.opendaylight.controller.sal.core,
36               org.opendaylight.controller.sal.utils,
37               org.opendaylight.controller.sal.packet,
38               org.opendaylight.controller.sal.topology,
39               org.opendaylight.controller.clustering.services,
40               org.opendaylight.controller.md.sal.common.api.data,
41               org.opendaylight.yangtools.yang.binding,
42               org.osgi.service.component,
43               org.slf4j,
44               org.apache.felix.dm,
45               org.apache.commons.lang3.builder,
46               org.apache.commons.lang3.tuple,
47               org.eclipse.osgi.framework.console,
48               org.osgi.framework
49             </Import-Package>
50             <Bundle-Activator>
51               org.opendaylight.controller.datastore.internal.Activator
52             </Bundle-Activator>
53           </instructions>
54           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
55         </configuration>
56       </plugin>
57     </plugins>
58   </build>
59   <dependencies>
60
61     <dependency>
62       <groupId>com.google.guava</groupId>
63       <artifactId>guava</artifactId>
64     </dependency>
65     <dependency>
66         <groupId>org.opendaylight.controller</groupId>
67         <artifactId>sal-common-api</artifactId>
68         <version>1.0-SNAPSHOT</version>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>sal-common-util</artifactId>
73       <version>1.0-SNAPSHOT</version>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>sal</artifactId>
78       <version>0.5.1-SNAPSHOT</version>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.controller</groupId>
82       <artifactId>clustering.services</artifactId>
83       <version>0.4.1-SNAPSHOT</version>
84     </dependency>
85     <dependency>
86       <groupId>junit</groupId>
87       <artifactId>junit</artifactId>
88       <scope>test</scope>
89     </dependency>
90     <dependency>
91        <groupId>org.mockito</groupId>
92        <artifactId>mockito-all</artifactId>
93        <scope>test</scope>
94     </dependency>
95     <dependency>
96       <groupId>equinoxSDK381</groupId>
97       <artifactId>org.eclipse.osgi</artifactId>
98       <version>3.8.1.v20120830-144521</version>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.yangtools</groupId>
102       <artifactId>yang-binding</artifactId>
103     </dependency>
104   </dependencies>
105 </project>