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