fix for BUG 661
[openflowplugin.git] / drop-test / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.openflowplugin</groupId>
5         <artifactId>openflowplugin-parent</artifactId>
6         <version>0.0.3-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9     <artifactId>drop-test</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
14     </scm>
15     <properties>
16         <xtend.version>2.4.3</xtend.version>
17         <bundle.plugin.version>2.4.0</bundle.plugin.version>
18         <maven.clean.plugin.version>2.5</maven.clean.plugin.version>
19     </properties>
20     <dependencies>
21         <dependency>
22             <groupId>com.google.guava</groupId>
23             <artifactId>guava</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>sal-binding-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller.model</groupId>
31             <artifactId>model-flow-service</artifactId>
32         </dependency>    
33             <dependency>
34               <groupId>org.opendaylight.controller.model</groupId>
35               <artifactId>model-flow-base</artifactId>
36             </dependency>
37            <dependency>
38               <groupId>org.opendaylight.controller.model</groupId>
39               <artifactId>model-flow-management</artifactId>
40             </dependency>    
41         <dependency>
42             <groupId>org.opendaylight.controller.model</groupId>
43             <artifactId>model-inventory</artifactId>
44         </dependency>
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>commons-codec</groupId>
60                     <artifactId>commons-codec</artifactId>
61                   </dependency>
62               
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                         <Bundle-Activator>org.opendaylight.openflowplugin.droptest.DropTestActivator</Bundle-Activator>
75                         <Embed-Dependency>commons-lang</Embed-Dependency>&gt;
76                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
77                     </instructions>
78                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
79                 </configuration>
80             </plugin>
81             <plugin>
82                 <groupId>org.eclipse.xtend</groupId>
83                 <artifactId>xtend-maven-plugin</artifactId>
84                 <version>${xtend.version}</version>
85                 <executions>
86                   <execution>
87                       <goals>
88                           <goal>compile</goal>
89                       </goals>
90                       <configuration>
91                           <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
92                       </configuration>
93                   </execution>
94               </executions>
95             </plugin>
96             <plugin>
97                 <artifactId>maven-clean-plugin</artifactId>
98                 <version>${maven.clean.plugin.version}</version>
99                 <configuration>
100                     <filesets>
101                         <fileset>
102                             <directory>${basedir}/src/main/xtend-gen</directory>
103                             <includes>
104                                 <include>**</include>
105                             </includes>
106                         </fileset>
107                     </filesets>
108                 </configuration>
109             </plugin>
110         </plugins>
111     </build>
112 </project>