When a node is going down, remove edges in both directions associated with the node.
[controller.git] / opendaylight / sal / yang-prototype / 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     <groupId>org.opendaylight.controller</groupId>
5     <artifactId>yang-prototype</artifactId>
6     <version>0.5-SNAPSHOT</version>
7     <packaging>pom</packaging>
8     <modules>
9         <module>concepts-lang</module>
10         <module>yang</module>
11         <module>code-generator</module>
12         <module>model</module>
13     </modules>
14
15     <properties>
16         <sonar.host.url>https://sonar.opendaylight.org/</sonar.host.url>
17         <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
18         <sitedeploy>dav:http://nexus.opendaylight.org/content/sites/site</sitedeploy>
19         <siteplugin>3.2</siteplugin>
20         <projectinfo>2.6</projectinfo>
21         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22         <compiler.version>2.3.2</compiler.version>
23         <surefire.version>2.13</surefire.version>
24         <exam.version>3.0.0</exam.version>
25         <url.version>1.5.0</url.version>
26         <enunciate.version>1.26.2</enunciate.version>
27         <sonar.branch>${user.name}-private-view</sonar.branch>
28         <sonar.skippedModules>org.openflow.openflowj,net.sf.jung2</sonar.skippedModules>
29         <logback.version>1.0.9</logback.version>
30         <slf4j.version>1.7.2</slf4j.version>
31     </properties>
32
33     <pluginRepositories>
34         <pluginRepository>
35             <id>central2</id>
36             <name>central2</name>
37             <url>${nexusproxy}/repositories/central2/</url>
38         </pluginRepository>
39     </pluginRepositories>
40
41
42     <repositories>
43         <!-- EBR release -->
44         <!-- http://repository.springsource.com/maven/bundles/release -->
45         <repository>
46             <id>ebr-bundles-release</id>
47             <name>ebr-bundles-release</name>
48             <url>${nexusproxy}/repositories/ebr-bundles-release/</url>
49         </repository>
50         <!-- EBR external -->
51         <!-- http://repository.springsource.com/maven/bundles/external -->
52         <repository>
53             <id>ebr-bundles-external</id>
54             <name>ebr-bundles-external</name>
55             <url>${nexusproxy}/repositories/ebr-bundles-external/</url>
56         </repository>
57         <!-- Maven repo2 mirror -->
58         <!-- http://repo2.maven.org/maven2 -->
59         <repository>
60             <id>central2</id>
61             <name>central2</name>
62             <url>${nexusproxy}/repositories/central2/</url>
63         </repository>
64         <!-- Maven repo1 mirror -->
65         <!-- http://repo1.maven.org/maven2 -->
66         <repository>
67             <id>central</id>
68             <name>central</name>
69             <url>${nexusproxy}/repositories/central/</url>
70         </repository>
71         <!-- Pax mirror -->
72         <!-- https://oss.sonatype.org/content/repositories/ops4j-releases -->
73         <repository>
74             <id>ops4j-releases</id>
75             <name>ops4j-releases</name>
76             <url>${nexusproxy}/repositories/ops4j-releases/</url>
77         </repository>
78         <!-- Third Packages hosted in local maven because not available in other 
79             places -->
80         <repository>
81             <id>thirdparty</id>
82             <name>thirdparty</name>
83             <url>${nexusproxy}/repositories/thirdparty/</url>
84         </repository>
85         <!-- Jboss mirror -->
86         <!-- https://repository.jboss.org/nexus/content/repositories/releases -->
87         <repository>
88             <id>jboss.releases</id>
89             <name>jboss.releases</name>
90             <url>${nexusproxy}/repositories/jboss.releases/</url>
91         </repository>
92         <!-- OpenDayLight Released artifact -->
93         <repository>
94             <id>opendaylight-release</id>
95             <name>opendaylight-release</name>
96             <url>${nexusproxy}/repositories/opendaylight.release/</url>
97         </repository>
98         <!-- OpenDayLight Snapshot artifact -->
99         <repository>
100             <id>opendaylight-snapshot</id>
101             <name>opendaylight-snapshot</name>
102             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
103         </repository>
104     </repositories>
105     <distributionManagement>
106         <!-- OpenDayLight Released artifact -->
107         <repository>
108             <id>opendaylight-release</id>
109             <url>${nexusproxy}/repositories/opendaylight.release/</url>
110         </repository>
111         <!-- OpenDayLight Snapshot artifact -->
112         <snapshotRepository>
113             <id>opendaylight-snapshot</id>
114             <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
115         </snapshotRepository>
116         <!-- Site deployment -->
117         <!-- site>
118             <id>website</id>
119             <url>${sitedeploy}</url>
120         </site -->
121     </distributionManagement>
122
123
124     <dependencyManagement>
125         <dependencies>
126             <dependency>
127                 <groupId>junit</groupId>
128                 <artifactId>junit</artifactId>
129                 <version>4.10</version>
130                 <scope>test</scope>
131                 <optional>true</optional>
132             </dependency>
133             <dependency>
134                 <groupId>org.slf4j</groupId>
135                 <artifactId>slf4j-api</artifactId>
136                 <version>1.7.2</version>
137             </dependency>
138         </dependencies>
139     </dependencyManagement>
140     <build>
141         <plugins>
142             <plugin>
143                 <groupId>org.apache.maven.plugins</groupId>
144                 <artifactId>maven-compiler-plugin</artifactId>
145                 <version>${compiler.version}</version>
146                 <inherited>true</inherited>
147                 <configuration>
148                     <source>1.7</source>
149                     <target>1.7</target>
150                 </configuration>
151             </plugin>
152             <plugin>
153                 <groupId>org.apache.maven.plugins</groupId>
154                 <artifactId>maven-javadoc-plugin</artifactId>
155                 <version>2.8.1</version>
156                 <configuration>
157                     <stylesheet>maven</stylesheet>
158                 </configuration>
159                 <executions>
160                     <execution>
161                         <goals>
162                             <goal>aggregate</goal>
163                         </goals>
164                         <phase>site</phase>
165                     </execution> 
166                     <execution> 
167                           <id>attach-javadocs</id>
168                           <phase>deploy</phase>
169                           <goals><goal>jar</goal></goals> 
170                     </execution> 
171                 </executions> 
172             </plugin>
173             <plugin>
174             <artifactId>maven-source-plugin</artifactId>
175                 <executions>
176                     <execution>
177                         <id>attach-sources</id>
178                         <phase>deploy</phase>
179                         <goals><goal>jar-no-fork</goal></goals> 
180                     </execution>
181                  </executions>
182             </plugin>
183             <plugin> 
184                 <!-- explicitly define maven-deploy-plugin after other to force exec order -->
185                 <artifactId>maven-deploy-plugin</artifactId> 
186                 <executions> 
187                     <execution> 
188                         <id>deploy</id>
189                         <phase>deploy</phase>
190                         <goals><goal>deploy</goal></goals> 
191                     </execution> 
192                 </executions> 
193             </plugin> 
194         </plugins>
195     </build>
196     <reporting>
197         <plugins>
198             <plugin>
199                 <groupId>org.codehaus.mojo</groupId>
200                 <artifactId>findbugs-maven-plugin</artifactId>
201                 <version>2.4.0</version>
202                 <configuration>
203                     <effort>Max</effort>
204                     <threshold>Low</threshold>
205                     <goal>site</goal>
206                 </configuration>
207             </plugin>
208             <plugin>
209                 <groupId>org.codehaus.mojo</groupId>
210                 <artifactId>jdepend-maven-plugin</artifactId>
211                 <version>2.0-beta-2</version>
212             </plugin>
213         </plugins>
214     </reporting>
215     <profiles>
216         <profile>
217             <id>viewbuild</id>
218             <activation>
219                 <activeByDefault>true</activeByDefault>
220             </activation>
221             <properties>
222                 <build.suffix>${project.version}</build.suffix>
223             </properties>
224         </profile>
225         <profile>
226             <id>jenkins</id>
227             <activation>
228                 <property>
229                     <name>BUILDSUFFIX</name>
230                 </property>
231             </activation>
232             <properties>
233                 <build.suffix>${BUILDSUFFIX}</build.suffix>
234             </properties>
235         </profile>
236     </profiles>
237 </project>