7743f1ba003336026d13f584bd3c3256d76de264
[vpnservice.git] / mdsalutil / mdsalutil-impl / 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
5     <parent>
6         <groupId>org.opendaylight.vpnservice</groupId>
7         <artifactId>config-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath>../../commons/config-parent</relativePath>
10      </parent>
11     <modelVersion>4.0.0</modelVersion>
12     <groupId>org.opendaylight.vpnservice</groupId>
13     <artifactId>mdsalutil-impl</artifactId>
14     <version>0.3.0-SNAPSHOT</version>    
15     <packaging>bundle</packaging>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.controller</groupId>
20             <artifactId>sal-binding-api</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.openflowplugin.model</groupId>
24             <artifactId>model-flow-base</artifactId>
25             <version>${openflowplugin.version}</version>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>liblldp</artifactId>
30             <version>${liblldp.version}</version>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.openflowplugin.model</groupId>
34             <artifactId>model-flow-service</artifactId>
35             <version>${openflowplugin.version}</version>
36         </dependency>
37          <!--  TEST Dependencies -->
38         <dependency>
39         <groupId>org.powermock</groupId>
40         <artifactId>powermock-module-junit4</artifactId>
41         <scope>test</scope>
42     </dependency>
43     <dependency>
44         <groupId>org.powermock</groupId>
45         <artifactId>powermock-api-mockito</artifactId>
46         <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-broker-impl</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>sal-binding-broker-impl</artifactId>
56       <version>${mdsal.version}</version>
57       <scope>test</scope>
58       <type>test-jar</type>
59     </dependency>
60      <dependency>
61       <groupId>${project.groupId}</groupId>
62       <artifactId>mdsalutil-api</artifactId>
63       <version>${project.version}</version>
64       </dependency>
65     </dependencies>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.maven.plugins</groupId>
71                 <artifactId>maven-surefire-plugin</artifactId>
72                 <configuration>
73                     <argLine>-XX:-UseSplitVerifier</argLine>
74                 </configuration>
75             </plugin>
76             
77         </plugins>
78     </build>
79 </project>