Merge "Bring some reliability in the eclipse and maven mixed builds"
[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               org.opendaylight.controller.datastore
33             </Export-Package>
34             <Import-Package>
35               javax.xml.bind.annotation,
36               org.opendaylight.controller.sal.core,
37               org.opendaylight.controller.sal.utils,
38               org.opendaylight.controller.sal.packet,
39               org.opendaylight.controller.sal.topology,
40               org.opendaylight.controller.clustering.services,
41               org.opendaylight.controller.md.sal.common.api.data,
42               org.opendaylight.controller.sal.common.util,
43               org.opendaylight.yangtools.yang.binding,
44               org.osgi.service.component,
45               org.slf4j,
46               org.apache.felix.dm,
47               org.apache.commons.lang3.builder,
48               org.apache.commons.lang3.tuple,
49               org.eclipse.osgi.framework.console,
50               org.osgi.framework,
51               com.google.common.base
52             </Import-Package>
53             <Bundle-Activator>
54               org.opendaylight.controller.datastore.internal.Activator
55             </Bundle-Activator>
56           </instructions>
57           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
58         </configuration>
59       </plugin>
60     </plugins>
61   </build>
62   <dependencies>
63
64     <dependency>
65       <groupId>com.google.guava</groupId>
66       <artifactId>guava</artifactId>
67     </dependency>
68     <dependency>
69         <groupId>org.opendaylight.controller</groupId>
70         <artifactId>sal-common-api</artifactId>
71         <version>1.0-SNAPSHOT</version>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal-common-util</artifactId>
76       <version>1.0-SNAPSHOT</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.controller</groupId>
80       <artifactId>sal</artifactId>
81       <version>0.5.1-SNAPSHOT</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.controller</groupId>
85       <artifactId>clustering.services</artifactId>
86       <version>0.4.1-SNAPSHOT</version>
87     </dependency>
88     <dependency>
89       <groupId>junit</groupId>
90       <artifactId>junit</artifactId>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94        <groupId>org.mockito</groupId>
95        <artifactId>mockito-all</artifactId>
96        <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>equinoxSDK381</groupId>
100       <artifactId>org.eclipse.osgi</artifactId>
101       <version>3.8.1.v20120830-144521</version>
102     </dependency>
103     <dependency>
104       <groupId>org.opendaylight.yangtools</groupId>
105       <artifactId>yang-binding</artifactId>
106     </dependency>
107   </dependencies>
108 </project>