Merge "Do not override odlparent properties."
[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.0.1-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.controller.model</groupId>
27             <artifactId>model-flow-service</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller.model</groupId>
31             <artifactId>model-flow-base</artifactId>
32         </dependency>
33         <!--<dependency>
34             <groupId>org.opendaylight.controller.model</groupId>
35             <artifactId>model-flow-management</artifactId>
36         </dependency>-->
37         <dependency>
38             <groupId>org.opendaylight.controller.model</groupId>
39             <artifactId>model-inventory</artifactId>
40         </dependency>
41         <!--<dependency>
42             <groupId>org.eclipse.xtend</groupId>
43             <artifactId>org.eclipse.xtend.lib</artifactId>
44             <version>${xtend.version}</version>
45         </dependency>-->
46         <!--<dependency>
47             <groupId>equinoxSDK381</groupId>
48             <artifactId>org.eclipse.osgi</artifactId>
49         </dependency>-->
50         <dependency>
51             <groupId>commons-lang</groupId>
52             <artifactId>commons-lang</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>com.google.guava</groupId>
56             <artifactId>guava</artifactId>
57         </dependency>
58         <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>mdsalutil-api</artifactId>
61       <version>${project.version}</version>
62       </dependency>
63     </dependencies>
64
65     <build>
66         <plugins>
67             <plugin>
68                 <groupId>org.apache.felix</groupId>
69                 <artifactId>maven-bundle-plugin</artifactId>
70                 <version>${bundle.plugin.version}</version>
71                 <extensions>true</extensions>
72                 <configuration>
73                     <instructions>
74                         <Export-Package>
75                         </Export-Package>
76                         <Service-Component>
77                         </Service-Component>
78                     </instructions>
79                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
80                 </configuration>
81             </plugin>
82             <!--<plugin>
83                 <groupId>org.eclipse.xtend</groupId>
84                 <artifactId>xtend-maven-plugin</artifactId>
85                 <version>${xtend.version}</version>
86                 <executions>
87                     <execution>
88                         <goals>
89                             <goal>compile</goal>
90                         </goals>
91                         <configuration>
92                             <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
93                         </configuration>
94                     </execution>
95                 </executions>
96             </plugin>-->
97             <plugin>
98                 <artifactId>maven-clean-plugin</artifactId>
99                 <version>${maven.clean.plugin.version}</version>
100                 <configuration>
101                     <filesets>
102                         <fileset>
103                             <directory>${basedir}/src/main/xtend-gen</directory>
104                             <includes>
105                                 <include>**</include>
106                             </includes>
107                         </fileset>
108                     </filesets>
109                 </configuration>
110             </plugin>
111         </plugins>
112     </build>
113 </project>