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