Bump versions by 0.1.0 for next dev cycle
[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         <version>1.5.2</version>
42         <scope>test</scope>
43     </dependency>
44     <dependency>
45         <groupId>org.powermock</groupId>
46         <artifactId>powermock-api-mockito</artifactId>
47         <version>1.5.2</version>
48         <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-binding-broker-impl</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>sal-binding-broker-impl</artifactId>
58       <version>${mdsal.version}</version>
59       <scope>test</scope>
60       <type>test-jar</type>
61     </dependency>
62      <dependency>
63       <groupId>${project.groupId}</groupId>
64       <artifactId>mdsalutil-api</artifactId>
65       <version>${project.version}</version>
66       </dependency>
67     </dependencies>
68
69     <build>
70         <plugins>
71             <plugin>
72                 <groupId>org.apache.maven.plugins</groupId>
73                 <artifactId>maven-surefire-plugin</artifactId>
74                 <configuration>
75                     <argLine>-XX:-UseSplitVerifier</argLine>
76                 </configuration>
77             </plugin>
78             
79         </plugins>
80     </build>
81 </project>