Merge "Fix for Bug 3"
[controller.git] / opendaylight / md-sal / remoterpc-routingtable / 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>remoterpc-routingtable.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.sal.connector.remoterpc.api,
33                             org.opendaylight.controller.sal.connector.remoterpc.impl
34                         </Export-Package>
35                         <Import-Package>
36                             javax.xml.bind.annotation,
37                             org.opendaylight.controller.sal.core,
38                             org.opendaylight.controller.sal.utils,
39                             org.opendaylight.controller.sal.packet,
40                             org.opendaylight.controller.sal.topology,
41                             org.opendaylight.controller.clustering.services,
42                             org.opendaylight.controller.md.sal.common.api.data,
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                             javax.transaction,
52                             com.google.common.base
53                         </Import-Package>
54                         <Bundle-Activator>
55                             org.opendaylight.controller.sal.connector.remoterpc.impl.Activator
56                         </Bundle-Activator>
57                     </instructions>
58                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
59                 </configuration>
60             </plugin>
61         </plugins>
62     </build>
63     <dependencies>
64
65         <dependency>
66             <groupId>com.google.guava</groupId>
67             <artifactId>guava</artifactId>
68         </dependency>
69
70         <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>sal</artifactId>
73             <exclusions>
74                 <exclusion>
75                     <groupId>org.osgi</groupId>
76                     <artifactId>org.osgi.compendium</artifactId>
77                 </exclusion>
78             </exclusions>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>sal-connector-api</artifactId>
83             <version>1.0-SNAPSHOT</version>
84         </dependency>
85
86         <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>clustering.services</artifactId>
89             <version>0.5.0-SNAPSHOT</version>
90         </dependency>
91
92
93         <dependency>
94             <groupId>junit</groupId>
95             <artifactId>junit</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.mockito</groupId>
100             <artifactId>mockito-all</artifactId>
101             <scope>test</scope>
102         </dependency>
103
104
105
106     </dependencies>
107 </project>