Cleanup versions across modules
[controller.git] / opendaylight / md-sal / samples / toaster-provider / 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.controller</groupId>
6     <artifactId>mdsal-parent</artifactId>
7     <version>2.0.0-SNAPSHOT</version>
8     <relativePath>../../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller.samples</groupId>
12   <artifactId>sample-toaster-provider</artifactId>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>${project.groupId}</groupId>
18       <artifactId>sample-toaster</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.mdsal</groupId>
22       <artifactId>mdsal-binding-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal-common-util</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.osgi</groupId>
30       <artifactId>org.osgi.core</artifactId>
31     </dependency>
32
33     <!-- dependencies to use AbstractDataBrokerTest -->
34     <dependency>
35       <groupId>org.opendaylight.mdsal</groupId>
36       <artifactId>mdsal-binding-dom-adapter</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.mdsal</groupId>
41       <artifactId>mdsal-binding-generator-impl</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>mdsal-binding-runtime-spi</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.mdsal</groupId>
51       <artifactId>mdsal-binding-dom-adapter</artifactId>
52       <type>test-jar</type>
53       <scope>test</scope>
54     </dependency>
55   </dependencies>
56
57   <scm>
58     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
59     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
60     <tag>HEAD</tag>
61     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
62   </scm>
63 </project>