added test classes for stats
[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"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.0.1-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10     <artifactId>test-provider</artifactId>
11     <packaging>bundle</packaging>
12     <scm>
13         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
15     </scm>
16     <properties>
17         <guava.version>14.0.1</guava.version>
18         <xtend.version>2.4.3</xtend.version>
19         <bundle.plugin.version>2.4.0</bundle.plugin.version>
20         <maven.clean.plugin.version>2.5</maven.clean.plugin.version>
21     </properties>
22     <dependencies>
23         <dependency>
24             <groupId>com.google.guava</groupId>
25             <artifactId>guava</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>sal-binding-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.controller.model</groupId>
33             <artifactId>model-flow-service</artifactId>
34         </dependency>    
35             <dependency>
36               <groupId>org.opendaylight.controller.model</groupId>
37               <artifactId>model-flow-base</artifactId>
38               <version>1.0-SNAPSHOT</version>
39             </dependency>
40            <dependency>
41               <groupId>org.opendaylight.controller.model</groupId>
42               <artifactId>model-flow-management</artifactId>
43               <version>1.0-SNAPSHOT</version>
44             </dependency>    
45         <dependency>
46             <groupId>org.opendaylight.controller.model</groupId>
47             <artifactId>model-inventory</artifactId>
48         </dependency>
49                 <dependency>
50             <groupId>org.opendaylight.controller.model</groupId>
51             <artifactId>model-flow-statistics</artifactId>
52         </dependency>   
53         <dependency>
54             <groupId>org.eclipse.xtend</groupId>
55             <artifactId>org.eclipse.xtend.lib</artifactId>
56             <version>${xtend.version}</version>
57         </dependency>
58          <dependency>
59                 <groupId>equinoxSDK381</groupId>
60                 <artifactId>org.eclipse.osgi</artifactId>
61                 <version>3.8.1.v20120830-144521</version>
62               </dependency>
63               <dependency>
64             <groupId>commons-lang</groupId>
65             <artifactId>commons-lang</artifactId>
66             <version>2.6</version>
67           </dependency>
68     </dependencies>
69
70     <build>
71         <plugins>
72             <plugin>
73                 <groupId>org.apache.felix</groupId>
74                 <artifactId>maven-bundle-plugin</artifactId>
75                 <version>${bundle.plugin.version}</version>
76                 <extensions>true</extensions>
77                 <configuration>
78                     <instructions>
79                         <Bundle-Activator>org.opendaylight.openflowplugin.test.OpenflowpluginTestActivator</Bundle-Activator>
80                         <Embed-Dependency>commons-lang</Embed-Dependency>>
81                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
82                     </instructions>
83                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
84                 </configuration>
85             </plugin>
86             <plugin>
87                 <groupId>org.eclipse.xtend</groupId>
88                 <artifactId>xtend-maven-plugin</artifactId>
89                 <version>${xtend.version}</version>
90                 <executions>
91                   <execution>
92                       <goals>
93                           <goal>compile</goal>
94                       </goals>
95                       <configuration>
96                           <outputDirectory>${basedir}/src/main/xtend-gen</outputDirectory>
97                       </configuration>
98                   </execution>
99               </executions>
100             </plugin>
101             <plugin>
102                 <artifactId>maven-clean-plugin</artifactId>
103                 <version>${maven.clean.plugin.version}</version>
104                 <configuration>
105                     <filesets>
106                         <fileset>
107                             <directory>${basedir}/src/main/xtend-gen</directory>
108                             <includes>
109                                 <include>**</include>
110                             </includes>
111                         </fileset>
112                     </filesets>
113                 </configuration>
114             </plugin>
115         </plugins>
116     </build>
117 </project>