changed the pom.xml to include proper integration test
[controller.git] / opendaylight / md-sal / zeromq-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>zeromq-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
32                         <Import-Package>
33                             javax.xml.bind.annotation,
34                             org.opendaylight.controller.sal.core,
35                             org.opendaylight.controller.sal.utils,
36                             org.opendaylight.controller.sal.packet,
37                             org.opendaylight.controller.sal.topology,
38                             org.opendaylight.controller.clustering.services,
39                             org.opendaylight.controller.md.sal.common.api.data,
40                             org.opendaylight.yangtools.yang.binding,
41                             org.osgi.service.component,
42                             org.slf4j,
43                             org.apache.felix.dm,
44                             org.apache.commons.lang3.builder,
45                             org.apache.commons.lang3.tuple,
46                             org.eclipse.osgi.framework.console,
47                             org.osgi.framework,
48                             javax.transaction,
49                             com.google.common.base
50                         </Import-Package>
51                         <Bundle-Activator>
52                             org.opendaylight.controller.sal.connector.remoterpc.impl.Activator
53                         </Bundle-Activator>
54                     </instructions>
55                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
56                 </configuration>
57             </plugin>
58         </plugins>
59     </build>
60     <dependencies>
61
62         <dependency>
63             <groupId>com.google.guava</groupId>
64             <artifactId>guava</artifactId>
65         </dependency>
66
67         <dependency>
68             <groupId>org.opendaylight.controller</groupId>
69             <artifactId>sal</artifactId>
70             <version>0.5.1-SNAPSHOT</version>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.controller</groupId>
74             <artifactId>sal-connector-api</artifactId>
75             <version>1.0-SNAPSHOT</version>
76         </dependency>
77
78         <dependency>
79             <groupId>org.opendaylight.controller</groupId>
80             <artifactId>clustering.services</artifactId>
81             <version>0.4.1-SNAPSHOT</version>
82         </dependency>
83
84
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
96
97
98     </dependencies>
99 </project>