Bumping versions by 0.0.1 for next dev cycle
[nemo.git] / nemo-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   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.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>0.8.2-SNAPSHOT</version>
16     <relativePath />
17   </parent>
18
19   <groupId>org.opendaylight.nemo</groupId>
20   <artifactId>nemo-api</artifactId>
21   <version>1.0.2-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <name>${project.artifactId}</name>
24
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.opendaylight.yangtools</groupId>
29         <artifactId>yang-maven-plugin</artifactId>
30         <executions>
31           <execution>
32             <goals>
33               <goal>generate-sources</goal>
34             </goals>
35             <configuration>
36               <yangFilesRootDir>src/main/yang</yangFilesRootDir>
37               <codeGenerators>
38                 <generator>
39                   <codeGeneratorClass>
40                     org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
41                   </codeGeneratorClass>
42                   <outputBaseDir>
43                     ${salGeneratorPath}
44                   </outputBaseDir>
45                 </generator>
46               </codeGenerators>
47               <inspectDependencies>true</inspectDependencies>
48             </configuration>
49           </execution>
50         </executions>
51         <dependencies>
52           <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>maven-sal-api-gen-plugin</artifactId>
55             <version>${yangtools.version}</version>
56             <type>jar</type>
57           </dependency>
58         </dependencies>
59       </plugin>
60     </plugins>
61   </build>
62
63   <scm>
64     <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
65     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
66     <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
67     <tag>HEAD</tag>
68   </scm>
69 </project>