Bug 651 - cleanup eclipse errors in openflowplugin
[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         <bundle.plugin.version>2.4.0</bundle.plugin.version>
17     </properties>
18     <dependencies>
19         <dependency>
20             <groupId>com.google.guava</groupId>
21             <artifactId>guava</artifactId>
22         </dependency>
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>equinoxSDK381</groupId>
45                 <artifactId>org.eclipse.osgi</artifactId>
46               </dependency>
47               <dependency>
48             <groupId>commons-lang</groupId>
49             <artifactId>commons-lang</artifactId>
50           </dependency>
51           <dependency>
52                     <groupId>commons-codec</groupId>
53                     <artifactId>commons-codec</artifactId>
54                   </dependency>
55               
56     </dependencies>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.apache.felix</groupId>
62                 <artifactId>maven-bundle-plugin</artifactId>
63                 <version>${bundle.plugin.version}</version>
64                 <extensions>true</extensions>
65                 <configuration>
66                     <instructions>
67                         <Bundle-Activator>org.opendaylight.openflowplugin.droptest.DropTestActivator</Bundle-Activator>
68                         <Embed-Dependency>commons-lang</Embed-Dependency>
69                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
70                     </instructions>
71                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
72                 </configuration>
73             </plugin>
74         </plugins>
75     </build>
76 </project>