Version bump for vpnservice on master
[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.2.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.2.0-SNAPSHOT</version>    
15     <packaging>bundle</packaging>
16     
17     <properties>
18         <xtend.version>2.4.3</xtend.version>
19     </properties>
20     <dependencies>
21         <dependency>
22             <groupId>org.opendaylight.controller</groupId>
23             <artifactId>sal-binding-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.openflowplugin.model</groupId>
27             <artifactId>model-flow-base</artifactId>
28             <version>${openflowplugin.version}</version>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.openflowplugin.model</groupId>
32             <artifactId>model-flow-service</artifactId>
33             <version>${openflowplugin.version}</version>
34         </dependency>
35          <!--  TEST Dependencies -->
36         <dependency>
37         <groupId>org.powermock</groupId>
38         <artifactId>powermock-module-junit4</artifactId>
39         <version>1.5.2</version>
40         <scope>test</scope>
41     </dependency>
42     <dependency>
43         <groupId>org.powermock</groupId>
44         <artifactId>powermock-api-mockito</artifactId>
45         <version>1.5.2</version>
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>