Merge "Porting the modules from vpnservice to genius"
[genius.git] / lockmanager / lockmanager-api / 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.genius</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.1.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.genius</groupId>
20   <artifactId>lockmanager-api</artifactId>
21   <version>0.1.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25     <dependency>
26       <groupId>org.opendaylight.mdsal</groupId>
27       <artifactId>yang-binding</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>yang-common</artifactId>
32     </dependency>
33   </dependencies>
34   <build>
35     <pluginManagement>
36       <plugins>
37         <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
38         <plugin>
39           <groupId>org.eclipse.m2e</groupId>
40           <artifactId>lifecycle-mapping</artifactId>
41           <version>1.0.0</version>
42           <configuration>
43             <lifecycleMappingMetadata>
44               <pluginExecutions>
45                 <pluginExecution>
46                   <pluginExecutionFilter>
47                     <groupId>
48                       org.opendaylight.yangtools
49                     </groupId>
50                     <artifactId>
51                       yang-maven-plugin
52                     </artifactId>
53                     <versionRange>
54                       [0.7.2-SNAPSHOT,)
55                     </versionRange>
56                     <goals>
57                       <goal>generate-sources</goal>
58                     </goals>
59                   </pluginExecutionFilter>
60                   <action>
61                     <ignore></ignore>
62                   </action>
63                 </pluginExecution>
64               </pluginExecutions>
65             </lifecycleMappingMetadata>
66           </configuration>
67         </plugin>
68       </plugins>
69     </pluginManagement>
70   </build>
71 </project>