5e79038b73a72553e1986ecec8338a5ae0429c5e
[genius.git] / lockmanager / lockmanager-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.5.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>lockmanager-impl</artifactId>
21   <version>0.1.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>lockmanager-api</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30
31     <!-- Testing Dependencies -->
32     <dependency>
33       <groupId>junit</groupId>
34       <artifactId>junit</artifactId>
35       <scope>test</scope>
36     </dependency>
37
38     <dependency>
39       <groupId>org.mockito</groupId>
40       <artifactId>mockito-all</artifactId>
41       <scope>test</scope>
42     </dependency>
43   </dependencies>
44   <build>
45     <pluginManagement>
46       <plugins>
47         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
48         <plugin>
49           <groupId>org.eclipse.m2e</groupId>
50           <artifactId>lifecycle-mapping</artifactId>
51           <version>1.0.0</version>
52           <configuration>
53             <lifecycleMappingMetadata>
54               <pluginExecutions>
55                 <pluginExecution>
56                   <pluginExecutionFilter>
57                     <groupId>
58                       org.opendaylight.yangtools
59                     </groupId>
60                     <artifactId>
61                       yang-maven-plugin
62                     </artifactId>
63                     <versionRange>
64                       [0.8.0-SNAPSHOT,)
65                     </versionRange>
66                     <goals>
67                       <goal>generate-sources</goal>
68                     </goals>
69                   </pluginExecutionFilter>
70                   <action>
71                     <ignore></ignore>
72                   </action>
73                 </pluginExecution>
74                 <pluginExecution>
75                   <pluginExecutionFilter>
76                     <groupId>org.jacoco</groupId>
77                     <artifactId>
78                       jacoco-maven-plugin
79                     </artifactId>
80                     <versionRange>
81                       [0.7.2.201409121644,)
82                     </versionRange>
83                     <goals>
84                       <goal>prepare-agent</goal>
85                     </goals>
86                   </pluginExecutionFilter>
87                   <action>
88                     <ignore></ignore>
89                   </action>
90                 </pluginExecution>
91               </pluginExecutions>
92             </lifecycleMappingMetadata>
93           </configuration>
94         </plugin>
95       </plugins>
96     </pluginManagement>
97   </build>
98 </project>