Bump versions by x.(y+1).z
[openflowplugin.git] / test-provider / pom.xml
1 <?xml version="1.0"?>
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>openflowplugin-parent</artifactId>
7         <version>0.17.0-SNAPSHOT</version>
8         <relativePath>../parent</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     <dependencies>
17         <dependency>
18             <groupId>com.google.guava</groupId>
19             <artifactId>guava</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.mdsal</groupId>
23             <artifactId>mdsal-binding-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.mdsal</groupId>
27             <artifactId>yang-binding</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.openflowplugin.model</groupId>
31             <artifactId>model-flow-service</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.openflowplugin.model</groupId>
35             <artifactId>model-flow-base</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.openflowplugin.model</groupId>
39             <artifactId>model-inventory</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.openflowplugin.model</groupId>
43             <artifactId>model-flow-statistics</artifactId>
44         </dependency>
45         <dependency>
46             <!-- FIXME: Migrate to Karaf commands instead -->
47             <groupId>org.eclipse.tycho</groupId>
48             <artifactId>org.eclipse.osgi</artifactId>
49             <version>3.10.101.v20150820-1432</version>
50         </dependency>
51         <dependency>
52             <groupId>com.guicedee.services</groupId>
53             <artifactId>javax.inject</artifactId>
54             <optional>true</optional>
55         </dependency>
56         <dependency>
57             <groupId>jakarta.annotation</groupId>
58             <artifactId>jakarta.annotation-api</artifactId>
59             <optional>true</optional>
60         </dependency>
61         <dependency>
62             <groupId>org.osgi</groupId>
63             <artifactId>org.osgi.framework</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.osgi</groupId>
67             <artifactId>org.osgi.service.component.annotations</artifactId>
68         </dependency>
69     </dependencies>
70
71     <build>
72         <plugins>
73             <plugin>
74                 <groupId>org.apache.felix</groupId>
75                 <artifactId>maven-bundle-plugin</artifactId>
76                 <extensions>true</extensions>
77             </plugin>
78         </plugins>
79     </build>
80 </project>