Bump upstreams
[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.github.spotbugs</groupId>
19             <artifactId>spotbugs-annotations</artifactId>
20             <optional>true</optional>
21         </dependency>
22         <dependency>
23             <groupId>com.google.guava</groupId>
24             <artifactId>guava</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.mdsal</groupId>
28             <artifactId>mdsal-binding-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.mdsal</groupId>
32             <artifactId>yang-binding</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.openflowplugin.model</groupId>
36             <artifactId>model-flow-service</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.openflowplugin.model</groupId>
40             <artifactId>model-flow-base</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.openflowplugin.model</groupId>
44             <artifactId>model-inventory</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.openflowplugin.model</groupId>
48             <artifactId>model-flow-statistics</artifactId>
49         </dependency>
50         <dependency>
51             <!-- FIXME: Migrate to Karaf commands instead -->
52             <groupId>org.eclipse.tycho</groupId>
53             <artifactId>org.eclipse.osgi</artifactId>
54             <version>3.10.101.v20150820-1432</version>
55         </dependency>
56         <dependency>
57             <groupId>com.guicedee.services</groupId>
58             <artifactId>javax.inject</artifactId>
59             <optional>true</optional>
60         </dependency>
61         <dependency>
62             <groupId>jakarta.annotation</groupId>
63             <artifactId>jakarta.annotation-api</artifactId>
64             <optional>true</optional>
65         </dependency>
66         <dependency>
67             <groupId>org.osgi</groupId>
68             <artifactId>org.osgi.framework</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.osgi</groupId>
72             <artifactId>org.osgi.service.component.annotations</artifactId>
73         </dependency>
74     </dependencies>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.felix</groupId>
80                 <artifactId>maven-bundle-plugin</artifactId>
81                 <extensions>true</extensions>
82             </plugin>
83         </plugins>
84     </build>
85 </project>