MD SAL Util API exposed as a Service
[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.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         <!--<dependency>
36             <groupId>org.opendaylight.controller.model</groupId>
37             <artifactId>model-flow-management</artifactId>
38         </dependency>-->
39         <!-- Commenting due to missing constraint error
40         <dependency>
41             <groupId>org.opendaylight.controller.model</groupId>
42             <artifactId>model-inventory</artifactId>
43         </dependency>
44         -->
45         <!--<dependency>
46             <groupId>org.eclipse.xtend</groupId>
47             <artifactId>org.eclipse.xtend.lib</artifactId>
48             <version>${xtend.version}</version>
49         </dependency>-->
50         <!--<dependency>
51             <groupId>equinoxSDK381</groupId>
52             <artifactId>org.eclipse.osgi</artifactId>
53         </dependency>-->
54         <dependency>
55             <groupId>commons-lang</groupId>
56             <artifactId>commons-lang</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>com.google.guava</groupId>
60             <artifactId>guava</artifactId>
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.felix</groupId>
73                 <artifactId>maven-bundle-plugin</artifactId>
74                 <version>${bundle.plugin.version}</version>
75                 <extensions>true</extensions>
76                 <configuration>
77                     <instructions>
78                         <Export-Package>
79                         </Export-Package>
80                         <Service-Component>
81                         </Service-Component>
82                     </instructions>
83                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
84                 </configuration>
85             </plugin>
86             <!--<plugin>
87                 <groupId>org.eclipse.xtend</groupId>
88                 <artifactId>xtend-maven-plugin</artifactId>
89                 <version>${xtend.version}</version>
90                 <executions>
91                     <execution>
92                         <goals>
93                             <goal>compile</goal>
94                         </goals>
95                         <configuration>
96                             <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
97                         </configuration>
98                     </execution>
99                 </executions>
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         </plugins>
116     </build>
117 </project>