fix for BUG-709 - mixed up flow cookie and connection cookie
[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     <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.opendaylight.controller.model</groupId>
47             <artifactId>model-flow-statistics</artifactId>
48         </dependency>   
49         <dependency>
50             <groupId>org.eclipse.xtend</groupId>
51             <artifactId>org.eclipse.xtend.lib</artifactId>
52             <version>${xtend.version}</version>
53         </dependency>
54          <dependency>
55                 <groupId>equinoxSDK381</groupId>
56                 <artifactId>org.eclipse.osgi</artifactId>
57               </dependency>
58               <dependency>
59             <groupId>commons-lang</groupId>
60             <artifactId>commons-lang</artifactId>
61           </dependency>
62     </dependencies>
63
64     <build>
65         <plugins>
66             <plugin>
67                 <groupId>org.apache.felix</groupId>
68                 <artifactId>maven-bundle-plugin</artifactId>
69                 <version>${bundle.plugin.version}</version>
70                 <extensions>true</extensions>
71                 <configuration>
72                     <instructions>
73                         <Bundle-Activator>org.opendaylight.openflowplugin.test.OpenflowpluginTestActivator</Bundle-Activator>
74                         <Embed-Dependency>commons-lang</Embed-Dependency>
75                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
76                     </instructions>
77                 </configuration>
78             </plugin>
79             <plugin>
80                 <groupId>org.eclipse.xtend</groupId>
81                 <artifactId>xtend-maven-plugin</artifactId>
82             </plugin>
83         </plugins>
84     </build>
85 </project>