Version change for modules
[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.controller</groupId>
7         <artifactId>config-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11     <modelVersion>4.0.0</modelVersion>
12     <groupId>org.opendaylight.vpnservice</groupId>
13     <artifactId>mdsalutil-impl</artifactId>
14     <version>0.1.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>0.1.0-SNAPSHOT</version>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.openflowplugin.model</groupId>
32             <artifactId>model-flow-service</artifactId>
33             <version>0.1.0-SNAPSHOT</version>
34         </dependency>
35          <!--  TEST Dependencies -->
36     <dependency>
37       <groupId>junit</groupId>
38       <artifactId>junit</artifactId>
39     </dependency>
40        <dependency>
41        <groupId>org.mockito</groupId>
42        <artifactId>mockito-all</artifactId>
43        <scope>test</scope>
44     </dependency>
45     <dependency>
46         <groupId>org.powermock</groupId>
47         <artifactId>powermock-module-junit4</artifactId>
48         <version>1.5.2</version>
49         <scope>test</scope>
50     </dependency>
51     <dependency>
52         <groupId>org.powermock</groupId>
53         <artifactId>powermock-api-mockito</artifactId>
54         <version>1.5.2</version>
55         <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>sal-binding-broker-impl</artifactId>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <artifactId>sal-binding-broker-impl</artifactId>
65       <version>${mdsal.version}</version>
66       <scope>test</scope>
67       <type>test-jar</type>
68     </dependency>
69      <dependency>
70             <groupId>commons-lang</groupId>
71             <artifactId>commons-lang</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>com.google.guava</groupId>
75             <artifactId>guava</artifactId>
76         </dependency>
77      <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>mdsalutil-api</artifactId>
80       <version>${project.version}</version>
81       </dependency>
82     </dependencies>
83
84     <build>
85         <plugins>
86             <plugin>
87                 <groupId>org.apache.felix</groupId>
88                 <artifactId>maven-bundle-plugin</artifactId>
89                 <version>${bundle.plugin.version}</version>
90                 <extensions>true</extensions>
91                 <configuration>
92                     <instructions>
93                         <Export-Package>
94                         </Export-Package>
95                         <Service-Component>
96                         </Service-Component>
97                     </instructions>
98                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
99                 </configuration>
100             </plugin>
101             <plugin>
102                 <artifactId>maven-clean-plugin</artifactId>
103                 <version>${maven.clean.plugin.version}</version>
104                 <configuration>
105                     <filesets>
106                         <fileset>
107                             <directory>${basedir}/src/main/xtend-gen</directory>
108                             <includes>
109                                 <include>**</include>
110                             </includes>
111                         </fileset>
112                     </filesets>
113                 </configuration>
114             </plugin>
115             <plugin>
116                 <groupId>org.apache.maven.plugins</groupId>
117                 <artifactId>maven-surefire-plugin</artifactId>
118                 <configuration>
119                     <argLine>-XX:-UseSplitVerifier</argLine>
120                 </configuration>
121             </plugin>
122             
123         </plugins>
124     </build>
125 </project>