Intro. @Inject @Singleton etc. in some helper services, for testability
[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.6.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>lockmanager-impl</artifactId>
21   <version>0.2.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     <dependency>
31       <groupId>javax.inject</groupId>
32       <artifactId>javax.inject</artifactId>
33     </dependency>
34
35     <!-- Testing Dependencies -->
36     <dependency>
37       <groupId>junit</groupId>
38       <artifactId>junit</artifactId>
39       <scope>test</scope>
40     </dependency>
41
42     <dependency>
43       <groupId>org.mockito</groupId>
44       <artifactId>mockito-all</artifactId>
45       <scope>test</scope>
46     </dependency>
47   </dependencies>
48   <build>
49     <pluginManagement>
50       <plugins>
51         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
52         <plugin>
53           <groupId>org.eclipse.m2e</groupId>
54           <artifactId>lifecycle-mapping</artifactId>
55           <version>1.0.0</version>
56           <configuration>
57             <lifecycleMappingMetadata>
58               <pluginExecutions>
59                 <pluginExecution>
60                   <pluginExecutionFilter>
61                     <groupId>
62                       org.opendaylight.yangtools
63                     </groupId>
64                     <artifactId>
65                       yang-maven-plugin
66                     </artifactId>
67                     <versionRange>
68                       [0.9.0-SNAPSHOT,)
69                     </versionRange>
70                     <goals>
71                       <goal>generate-sources</goal>
72                     </goals>
73                   </pluginExecutionFilter>
74                   <action>
75                     <ignore></ignore>
76                   </action>
77                 </pluginExecution>
78                 <pluginExecution>
79                   <pluginExecutionFilter>
80                     <groupId>org.jacoco</groupId>
81                     <artifactId>
82                       jacoco-maven-plugin
83                     </artifactId>
84                     <versionRange>
85                       [0.7.2.201409121644,)
86                     </versionRange>
87                     <goals>
88                       <goal>prepare-agent</goal>
89                     </goals>
90                   </pluginExecutionFilter>
91                   <action>
92                     <ignore></ignore>
93                   </action>
94                 </pluginExecution>
95               </pluginExecutions>
96             </lifecycleMappingMetadata>
97           </configuration>
98         </plugin>
99       </plugins>
100     </pluginManagement>
101   </build>
102 </project>