Merge "Bug 1187 - of-flow: instruction/.../action/set-field with missing detail in...
[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.0.3-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-flow-management</artifactId>
35             </dependency>    
36         <dependency>
37             <groupId>org.opendaylight.controller.model</groupId>
38             <artifactId>model-inventory</artifactId>
39         </dependency>
40                 <dependency>
41             <groupId>org.opendaylight.controller.model</groupId>
42             <artifactId>model-flow-statistics</artifactId>
43         </dependency>   
44         <dependency>
45             <groupId>org.eclipse.xtend</groupId>
46             <artifactId>org.eclipse.xtend.lib</artifactId>
47             <version>${xtend.version}</version>
48         </dependency>
49          <dependency>
50                 <groupId>equinoxSDK381</groupId>
51                 <artifactId>org.eclipse.osgi</artifactId>
52               </dependency>
53               <dependency>
54             <groupId>commons-lang</groupId>
55             <artifactId>commons-lang</artifactId>
56           </dependency>
57     </dependencies>
58
59     <build>
60         <plugins>
61             <plugin>
62                 <groupId>org.apache.felix</groupId>
63                 <artifactId>maven-bundle-plugin</artifactId>
64                 <version>${maven.bundle.version}</version>
65                 <extensions>true</extensions>
66                 <configuration>
67                     <instructions>
68                         <Bundle-Activator>org.opendaylight.openflowplugin.test.OpenflowpluginTestActivator</Bundle-Activator>
69                         <Embed-Dependency>commons-lang</Embed-Dependency>
70                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
71                     </instructions>
72                 </configuration>
73             </plugin>
74             <plugin>
75                 <groupId>org.eclipse.xtend</groupId>
76                 <artifactId>xtend-maven-plugin</artifactId>
77             </plugin>
78         </plugins>
79     </build>
80 </project>