Bump versions by x.(y+1).z for next dev cycle
[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.5.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.opendaylight.openflowplugin</groupId>
57       <artifactId>openflowplugin-common</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.slf4j</groupId>
61       <artifactId>slf4j-log4j12</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.mockito</groupId>
66       <artifactId>mockito-core</artifactId>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70
71   <build>
72     <plugins>
73         <plugin>
74             <groupId>org.apache.felix</groupId>
75             <artifactId>maven-bundle-plugin</artifactId>
76             <configuration>
77                 <instructions>
78                     <Import-Package>*</Import-Package>
79                 </instructions>
80             </configuration>
81         </plugin>
82         <plugin>
83             <groupId>org.opendaylight.yangtools</groupId>
84             <artifactId>yang-maven-plugin</artifactId>
85         </plugin>
86     </plugins>
87   </build>
88
89
90   <scm>
91     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
92     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
93     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
94     <tag>HEAD</tag>
95   </scm>
96
97 </project>