Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / clustering / services_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" 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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>clustering.services-implementation</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19         <groupId>org.apache.felix</groupId>
20         <artifactId>maven-bundle-plugin</artifactId>
21         <version>2.3.6</version>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Import-Package>
26               org.slf4j,
27               !org.jboss.*,
28               !bsh*,
29               !net.jcip.*,
30               javax.transaction,
31               *,
32               org.opendaylight.controller.clustering.services,
33               org.opendaylight.controller.sal.core
34             </Import-Package>
35             <Bundle-Activator>
36               org.opendaylight.controller.clustering.services_implementation.internal.Activator
37             </Bundle-Activator>
38             <!-- Add in the DynamicImport-Package ONLY the packages that -->
39             <!-- contains types that MUST be unmarshalled by the -->
40             <!-- infinispan. They need to be wired at runtime even during -->
41             <!-- the bundle is already RESOLVED, but at the same time if -->
42             <!-- those are missing the bundle will still come up, this is -->
43             <!-- why those dependencies ends in the DynamicImport-Package -->
44             <!-- rather in the Import-Package  -->
45             <DynamicImport-Package>
46               *
47             </DynamicImport-Package>
48             <Embed-Dependency>
49               infinispan-core,jgroups,jboss-marshalling-river,jboss-marshalling,jboss-logging,staxmapper;type=!pom;inline=false
50             </Embed-Dependency>
51             <Embed-Transitive>
52               true
53             </Embed-Transitive>
54           </instructions>
55         </configuration>
56       </plugin>
57     </plugins>
58   </build>
59   <dependencies>
60     <dependency>
61       <groupId>org.infinispan</groupId>
62       <artifactId>infinispan-core</artifactId>
63       <version>5.2.3.Final</version>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.controller</groupId>
67       <artifactId>clustering.services</artifactId>
68       <version>0.4.0-SNAPSHOT</version>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>sal</artifactId>
73       <version>0.4.0-SNAPSHOT</version>
74     </dependency>
75   </dependencies>
76 </project>