Fix minor bug in FRM proactive flow code path
[controller.git] / opendaylight / sal / yang-prototype / yang / 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.controller</groupId>
6         <artifactId>yang</artifactId>
7         <version>0.5.4-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.controller</groupId>
20                 <artifactId>yang-maven-plugin</artifactId>
21                 <version>0.5.4-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                 <dependencies>
36                     <dependency>
37                         <groupId>org.opendaylight.controller</groupId>
38                         <artifactId>maven-sal-api-gen-plugin</artifactId>
39                         <version>0.5.4-SNAPSHOT</version>
40                         <type>jar</type>
41                     </dependency>
42                 </dependencies>
43             </plugin>
44         </plugins>
45
46         <pluginManagement>
47             <plugins>
48
49                 <plugin>
50                     <groupId>org.codehaus.mojo</groupId>
51                     <artifactId>build-helper-maven-plugin</artifactId>
52                     <version>1.7</version>
53                     <executions>
54                         <execution>
55                             <phase>generate-sources</phase>
56                             <goals>
57                                 <goal>add-source</goal>
58                             </goals>
59                             <configuration>
60                                 <sources>
61                                     <source>target/generated-sources/sal</source>
62                                 </sources>
63                             </configuration>
64                         </execution>
65                     </executions>
66                 </plugin>
67                 <!--This plugin's configuration is used to store Eclipse 
68                     m2e settings only. It has no influence on the Maven build itself. -->
69                 <plugin>
70                     <groupId>org.eclipse.m2e</groupId>
71                     <artifactId>lifecycle-mapping</artifactId>
72                     <version>1.0.0</version>
73                     <configuration>
74                         <lifecycleMappingMetadata>
75                             <pluginExecutions>
76                                 <pluginExecution>
77                                     <pluginExecutionFilter>
78                                         <groupId>
79                                             org.opendaylight.controller
80                                         </groupId>
81                                         <artifactId>
82                                             yang-maven-plugin
83                                         </artifactId>
84                                         <versionRange>
85                                             [0.5,)
86                                         </versionRange>
87                                         <goals>
88                                             <goal>
89                                                 generate-sources
90                                             </goal>
91                                         </goals>
92                                     </pluginExecutionFilter>
93                                     <action>
94                                         <ignore></ignore>
95                                     </action>
96                                 </pluginExecution>
97                             </pluginExecutions>
98                         </lifecycleMappingMetadata>
99                     </configuration>
100                 </plugin>
101             </plugins>
102         </pluginManagement>
103     </build>
104 </project>