Incrementing versions by 0.1.0 for post-Helium master branch
[controller.git] / opendaylight / md-sal / samples / toaster / 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.samples</groupId>
6     <artifactId>sal-samples</artifactId>
7     <version>1.2.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sample-toaster</artifactId>
10   <packaging>bundle</packaging>
11   <dependencies>
12     <dependency>
13       <groupId>org.opendaylight.yangtools</groupId>
14       <artifactId>yang-binding</artifactId>
15     </dependency>
16     <dependency>
17       <groupId>org.opendaylight.yangtools</groupId>
18       <artifactId>yang-common</artifactId>
19     </dependency>
20   </dependencies>
21
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.opendaylight.yangtools</groupId>
26         <artifactId>yang-maven-plugin</artifactId>
27         <dependencies>
28           <dependency>
29             <groupId>org.opendaylight.yangtools</groupId>
30             <artifactId>maven-sal-api-gen-plugin</artifactId>
31             <version>${yangtools.version}</version>
32             <type>jar</type>
33           </dependency>
34         </dependencies>
35         <executions>
36           <execution>
37             <goals>
38               <goal>generate-sources</goal>
39             </goals>
40             <configuration>
41               <yangFilesRootDir>src/main/yang</yangFilesRootDir>
42               <codeGenerators>
43                 <generator>
44                   <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
45                   <outputBaseDir>${salGeneratorPath}</outputBaseDir>
46                 </generator>
47               </codeGenerators>
48               <inspectDependencies>true</inspectDependencies>
49             </configuration>
50           </execution>
51         </executions>
52       </plugin>
53     </plugins>
54   </build>
55   <scm>
56     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
57     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
58     <tag>HEAD</tag>
59     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
60   </scm>
61 </project>