Merge "Fixed the log level."
[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.3.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.controller</groupId>
41       <artifactId>sal-binding-config</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-common-util</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.openflowplugin.model</groupId>
49       <artifactId>model-flow-base</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.openflowplugin.model</groupId>
53       <artifactId>model-flow-statistics</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.osgi</groupId>
57       <artifactId>org.osgi.core</artifactId>
58       <scope>provided</scope>
59     </dependency>
60       <dependency>
61           <groupId>org.opendaylight.controller</groupId>
62           <artifactId>sal-binding-config</artifactId>
63       </dependency>
64     <dependency>
65       <groupId>org.slf4j</groupId>
66       <artifactId>slf4j-log4j12</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.mockito</groupId>
71       <artifactId>mockito-all</artifactId>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75
76   <build>
77     <plugins>
78         <plugin>
79             <groupId>org.apache.felix</groupId>
80             <artifactId>maven-bundle-plugin</artifactId>
81             <configuration>
82                 <instructions>
83                     <Import-Package>*</Import-Package>
84                 </instructions>
85             </configuration>
86         </plugin>
87         <plugin>
88             <groupId>org.opendaylight.yangtools</groupId>
89             <artifactId>yang-maven-plugin</artifactId>
90         </plugin>
91     </plugins>
92   </build>
93
94
95   <scm>
96     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
97     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
98     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
99     <tag>HEAD</tag>
100   </scm>
101
102 </project>