Bug 868: Removed test code-duplicated from MD-SAL
[openflowplugin.git] / applications / statistics-manager / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.openflowplugin</groupId>
6     <artifactId>applications</artifactId>
7     <version>0.1.0-SNAPSHOT</version>
8   </parent>
9   <groupId>org.opendaylight.openflowplugin.applications</groupId>
10   <artifactId>statistics-manager</artifactId>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>com.google.guava</groupId>
16       <artifactId>guava</artifactId>
17     </dependency>
18
19     <dependency>
20       <groupId>junit</groupId>
21       <artifactId>junit</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-binding-broker-impl</artifactId>
26       <scope>test</scope>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-binding-broker-impl</artifactId>
31       <version>${mdsal.version}</version>
32       <scope>test</scope>
33       <type>test-jar</type>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>sal-binding-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.openflowplugin.model</groupId>
41       <artifactId>model-flow-base</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.openflowplugin.model</groupId>
45       <artifactId>model-flow-statistics</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.osgi</groupId>
49       <artifactId>org.osgi.core</artifactId>
50       <scope>provided</scope>
51     </dependency>
52       <dependency>
53           <groupId>org.opendaylight.controller</groupId>
54           <artifactId>sal-binding-config</artifactId>
55       </dependency>
56       <dependency>
57           <groupId>org.opendaylight.controller</groupId>
58           <artifactId>config-api</artifactId>
59       </dependency>
60     <dependency>
61       <groupId>org.slf4j</groupId>
62       <artifactId>slf4j-log4j12</artifactId>
63       <scope>test</scope>
64     </dependency>
65   </dependencies>
66
67   <build>
68     <plugins>
69         <plugin>
70             <groupId>org.apache.felix</groupId>
71             <artifactId>maven-bundle-plugin</artifactId>
72             <configuration>
73                 <instructions>
74                     <Import-Package>*</Import-Package>
75                 </instructions>
76             </configuration>
77         </plugin>
78         <plugin>
79             <groupId>org.opendaylight.yangtools</groupId>
80             <artifactId>yang-maven-plugin</artifactId>
81         </plugin>
82     </plugins>
83   </build>
84
85
86   <scm>
87     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
88     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
89     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
90     <tag>HEAD</tag>
91   </scm>
92
93 </project>