bug 2493 - eliminate the use of xtend and remove dependecies
[openflowplugin.git] / test-provider / 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.1.0-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9     <artifactId>test-provider</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     <dependencies>
16         <dependency>
17             <groupId>com.google.guava</groupId>
18             <artifactId>guava</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.controller</groupId>
22             <artifactId>sal-binding-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.controller.model</groupId>
26             <artifactId>model-flow-service</artifactId>
27         </dependency>    
28             <dependency>
29               <groupId>org.opendaylight.controller.model</groupId>
30               <artifactId>model-flow-base</artifactId>
31             </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller.model</groupId>
34             <artifactId>model-inventory</artifactId>
35         </dependency>
36                 <dependency>
37             <groupId>org.opendaylight.controller.model</groupId>
38             <artifactId>model-flow-statistics</artifactId>
39         </dependency>
40          <dependency>
41                 <groupId>equinoxSDK381</groupId>
42                 <artifactId>org.eclipse.osgi</artifactId>
43               </dependency>
44               <dependency>
45             <groupId>commons-lang</groupId>
46             <artifactId>commons-lang</artifactId>
47           </dependency>
48     </dependencies>
49
50     <build>
51         <plugins>
52             <plugin>
53                 <groupId>org.apache.felix</groupId>
54                 <artifactId>maven-bundle-plugin</artifactId>
55                 <version>${maven.bundle.version}</version>
56                 <extensions>true</extensions>
57                 <configuration>
58                     <instructions>
59                         <Bundle-Activator>org.opendaylight.openflowplugin.test.OpenflowpluginTestActivator</Bundle-Activator>
60                         <Embed-Dependency>commons-lang</Embed-Dependency>
61                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
62                     </instructions>
63                 </configuration>
64             </plugin>
65         </plugins>
66     </build>
67 </project>