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