restructure and base modules for different features
[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         <bundle.plugin.version>2.4.0</bundle.plugin.version>
20         <maven.clean.plugin.version>2.5</maven.clean.plugin.version>
21     </properties>
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal-binding-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller.model</groupId>
29             <artifactId>model-flow-service</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller.model</groupId>
33             <artifactId>model-flow-base</artifactId>
34         </dependency>
35         <!--<dependency>
36             <groupId>org.opendaylight.controller.model</groupId>
37             <artifactId>model-flow-management</artifactId>
38         </dependency>-->
39         <dependency>
40             <groupId>org.opendaylight.controller.model</groupId>
41             <artifactId>model-inventory</artifactId>
42         </dependency>
43         <!--<dependency>
44             <groupId>org.eclipse.xtend</groupId>
45             <artifactId>org.eclipse.xtend.lib</artifactId>
46             <version>${xtend.version}</version>
47         </dependency>-->
48         <!--<dependency>
49             <groupId>equinoxSDK381</groupId>
50             <artifactId>org.eclipse.osgi</artifactId>
51         </dependency>-->
52         <dependency>
53             <groupId>commons-lang</groupId>
54             <artifactId>commons-lang</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>com.google.guava</groupId>
58             <artifactId>guava</artifactId>
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.felix</groupId>
71                 <artifactId>maven-bundle-plugin</artifactId>
72                 <version>${bundle.plugin.version}</version>
73                 <extensions>true</extensions>
74                 <configuration>
75                     <instructions>
76                         <Export-Package>
77                         </Export-Package>
78                         <Service-Component>
79                         </Service-Component>
80                     </instructions>
81                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
82                 </configuration>
83             </plugin>
84             <!--<plugin>
85                 <groupId>org.eclipse.xtend</groupId>
86                 <artifactId>xtend-maven-plugin</artifactId>
87                 <version>${xtend.version}</version>
88                 <executions>
89                     <execution>
90                         <goals>
91                             <goal>compile</goal>
92                         </goals>
93                         <configuration>
94                             <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
95                         </configuration>
96                     </execution>
97                 </executions>
98             </plugin>-->
99             <plugin>
100                 <artifactId>maven-clean-plugin</artifactId>
101                 <version>${maven.clean.plugin.version}</version>
102                 <configuration>
103                     <filesets>
104                         <fileset>
105                             <directory>${basedir}/src/main/xtend-gen</directory>
106                             <includes>
107                                 <include>**</include>
108                             </includes>
109                         </fileset>
110                     </filesets>
111                 </configuration>
112             </plugin>
113         </plugins>
114     </build>
115 </project>