Bump versions by x.(y+1).z for next dev cycle
[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>3.0.2</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.controller.samples</groupId>
12   <artifactId>sample-toaster-consumer</artifactId>
13   <version>1.8.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <properties>
17     <sal-binding-api.version>1.8.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.8.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.osgi</groupId>
48       <artifactId>org.osgi.core</artifactId>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <plugins>
54       <plugin>
55          <groupId>org.apache.maven.plugins</groupId>
56          <artifactId>maven-checkstyle-plugin</artifactId>
57          <configuration>
58            <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
59          </configuration>
60       </plugin>
61       <plugin>
62         <groupId>org.codehaus.mojo</groupId>
63         <artifactId>findbugs-maven-plugin</artifactId>
64         <configuration>
65           <failOnError>true</failOnError>
66         </configuration>
67       </plugin>
68     </plugins>
69   </build>
70
71   <scm>
72     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
73     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
74     <tag>HEAD</tag>
75     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
76   </scm>
77 </project>