Bump versions by x.(y+1).z for next dev cycle
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / impl / pom.xml
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 <?xml version="1.0" encoding="UTF-8"?>
5 <!-- vi: set et smarttab sw=4 tabstop=4: -->
6 <!--
7 Copyright © ${copyrightYear} ${copyright} and others. All rights reserved.
8
9 This program and the accompanying materials are made available under the
10 terms of the Eclipse Public License v1.0 which accompanies this distribution,
11 and is available at http://www.eclipse.org/legal/epl-v10.html
12 -->
13 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15   <modelVersion>4.0.0</modelVersion>
16
17   <parent>
18     <groupId>org.opendaylight.mdsal</groupId>
19     <artifactId>binding-parent</artifactId>
20     <version>0.13.0-SNAPSHOT</version>
21     <relativePath/>
22   </parent>
23
24   <groupId>${groupId}</groupId>
25   <artifactId>${artifactId}-impl</artifactId>
26   <version>${version}</version>
27   <!-- <name> formatting is used by autorelease to parse and notify projects on
28        build failure. Please do not modify this unless you have a good reason. -->
29   <name>ODL :: ${groupId} :: ${project.artifactId}</name>
30   <packaging>bundle</packaging>
31
32   <dependencyManagement>
33       <dependencies>
34           <dependency>
35               <groupId>org.opendaylight.controller</groupId>
36               <artifactId>mdsal-artifacts</artifactId>
37               <version>1.8.0-SNAPSHOT</version>
38               <type>pom</type>
39               <scope>import</scope>
40           </dependency>
41       </dependencies>
42   </dependencyManagement>
43
44   <dependencies>
45     <dependency>
46       <groupId>${symbol_dollar}{project.groupId}</groupId>
47       <artifactId>${artifactId}-api</artifactId>
48       <version>${symbol_dollar}{project.version}</version>
49     </dependency>
50
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal-binding-api</artifactId>
54     </dependency>
55
56     <!-- Testing Dependencies -->
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-core</artifactId>
66       <scope>test</scope>
67     </dependency>
68   </dependencies>
69
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.maven.plugins</groupId>
74         <artifactId>maven-checkstyle-plugin</artifactId>
75         <configuration>
76           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
77         </configuration>
78       </plugin>
79       <plugin>
80         <groupId>org.codehaus.mojo</groupId>
81         <artifactId>findbugs-maven-plugin</artifactId>
82         <configuration>
83           <failOnError>true</failOnError>
84         </configuration>
85       </plugin>
86     </plugins>
87   </build>
88 </project>