Fix minor bug in FRM proactive flow code path
[controller.git] / opendaylight / sal / yang-prototype / model / 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         <artifactId>yang-prototype</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.5-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <artifactId>model-parent</artifactId>
12     <packaging>pom</packaging>
13     <name>${project.artifactId}</name>
14     <description>${project.artifactId}</description>
15
16     <modules>
17         <module>ietf</module>
18         <module>model-topology</module>
19         <module>model-openflow</module>
20         <!-- <module>model-topology-bgp</module> -->
21     </modules>
22
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.opendaylight.controller</groupId>
27                 <artifactId>yang-maven-plugin</artifactId>
28                 <version>0.5.4-SNAPSHOT</version>
29                 <executions>
30                     <execution>
31                         <goals>
32                             <goal>generate-sources</goal>
33                         </goals>
34                         <configuration>
35                             <yangFilesRootDir>src/main/yang</yangFilesRootDir>
36                             <codeGenerators>
37                                 <generator>
38                                     <codeGeneratorClass>
39                                         org.opendaylight.controller.maven.sal.api.gen.plugin.CodeGeneratorImpl
40                                     </codeGeneratorClass>
41                                     <outputBaseDir>
42                                         target/generated-sources/sal
43                                     </outputBaseDir>
44                                 </generator>
45                             </codeGenerators>
46                             <inspectDependencies>true</inspectDependencies>
47                         </configuration>
48                     </execution>
49                 </executions>
50                 <dependencies>
51                     <dependency>
52                         <groupId>org.opendaylight.controller</groupId>
53                         <artifactId>maven-sal-api-gen-plugin</artifactId>
54                         <version>0.5.4-SNAPSHOT</version>
55                         <type>jar</type>
56                     </dependency>
57                 </dependencies>
58             </plugin>
59             <plugin>
60                 <groupId>org.codehaus.mojo</groupId>
61                 <artifactId>build-helper-maven-plugin</artifactId>
62                 <version>1.7</version>
63                 <executions>
64                     <execution>
65                         <phase>generate-sources</phase>
66                         <goals>
67                             <goal>add-source</goal>
68                         </goals>
69                         <configuration>
70                             <sources>
71                                 <source>target/generated-sources/sal</source>
72                             </sources>
73                         </configuration>
74                     </execution>
75                 </executions>
76             </plugin>
77         </plugins>
78         <pluginManagement>
79             <plugins>
80                 <!--This plugin's configuration is used to store Eclipse 
81                     m2e settings only. It has no influence on the Maven build itself. -->
82                 <plugin>
83                     <groupId>org.eclipse.m2e</groupId>
84                     <artifactId>lifecycle-mapping</artifactId>
85                     <version>1.0.0</version>
86                     <configuration>
87                         <lifecycleMappingMetadata>
88                             <pluginExecutions>
89                                 <pluginExecution>
90                                     <pluginExecutionFilter>
91                                         <groupId>
92                                             org.opendaylight.controller
93                                         </groupId>
94                                         <artifactId>
95                                             yang-maven-plugin
96                                         </artifactId>
97                                         <versionRange>
98                                             [0.5,)
99                                         </versionRange>
100                                         <goals>
101                                             <goal>
102                                                 generate-sources
103                                             </goal>
104                                         </goals>
105                                     </pluginExecutionFilter>
106                                     <action>
107                                         <ignore></ignore>
108                                     </action>
109                                 </pluginExecution>
110                             </pluginExecutions>
111                         </lifecycleMappingMetadata>
112                     </configuration>
113                 </plugin>
114             </plugins>
115         </pluginManagement>
116     </build>
117
118     <dependencies>
119         <dependency>
120             <groupId>org.opendaylight.controller</groupId>
121             <artifactId>yang-binding</artifactId>
122             <version>0.5.4-SNAPSHOT</version>
123         </dependency>
124         <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>yang-common</artifactId>
127             <version>0.5.4-SNAPSHOT</version>
128         </dependency>
129     </dependencies>
130
131 </project>