Version increased to 0.5.5-SNAPSHOT.
[yangtools.git] / yang-ext / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4     <parent>
5         <groupId>org.opendaylight.yangtools</groupId>
6         <artifactId>yangtools</artifactId>
7         <version>0.5.5-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>yang-ext</artifactId>
12     <version>2013.09.07-SNAPSHOT</version>
13     <name>${project.artifactId}</name>
14     <description>${project.artifactId}</description>
15
16     <build>
17         <plugins>
18             <plugin>
19                 <groupId>org.opendaylight.yangtools</groupId>
20                 <artifactId>yang-maven-plugin</artifactId>
21                 <version>0.5.5-SNAPSHOT</version>
22                 <executions>
23                     <execution>
24                         <goals>
25                             <goal>generate-sources</goal>
26                         </goals>
27                         <configuration>
28                             <yangFilesRootDir>src/main/yang</yangFilesRootDir>
29                             <codeGenerators>
30                             </codeGenerators>
31                             <inspectDependencies>false</inspectDependencies>
32                         </configuration>
33                     </execution>
34                 </executions>
35             </plugin>
36         </plugins>
37
38         <pluginManagement>
39             <plugins>
40
41                 <plugin>
42                     <groupId>org.codehaus.mojo</groupId>
43                     <artifactId>build-helper-maven-plugin</artifactId>
44                     <version>1.7</version>
45                     <executions>
46                         <execution>
47                             <phase>generate-sources</phase>
48                             <goals>
49                                 <goal>add-source</goal>
50                             </goals>
51                             <configuration>
52                                 <sources>
53                                     <source>target/generated-sources/sal</source>
54                                 </sources>
55                             </configuration>
56                         </execution>
57                     </executions>
58                 </plugin>
59                 <!--This plugin's configuration is used to store Eclipse 
60                     m2e settings only. It has no influence on the Maven build itself. -->
61                 <plugin>
62                     <groupId>org.eclipse.m2e</groupId>
63                     <artifactId>lifecycle-mapping</artifactId>
64                     <version>1.0.0</version>
65                     <configuration>
66                         <lifecycleMappingMetadata>
67                             <pluginExecutions>
68                                 <pluginExecution>
69                                     <pluginExecutionFilter>
70                                         <groupId>
71                                             org.opendaylight.yangtools
72                                         </groupId>
73                                         <artifactId>
74                                             yang-maven-plugin
75                                         </artifactId>
76                                         <versionRange>
77                                             [0.5.5,)
78                                         </versionRange>
79                                         <goals>
80                                             <goal>
81                                                 generate-sources
82                                             </goal>
83                                         </goals>
84                                     </pluginExecutionFilter>
85                                     <action>
86                                         <ignore></ignore>
87                                     </action>
88                                 </pluginExecution>
89                             </pluginExecutions>
90                         </lifecycleMappingMetadata>
91                     </configuration>
92                 </plugin>
93             </plugins>
94         </pluginManagement>
95     </build>
96
97 </project>