A race condition occurs between ARPHandler and HostTracker if the ARP
[controller.git] / opendaylight / sal / yang-prototype / yang / maven-yang-plugin-it / src / test / resources / NoOutputDir / 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
5     <groupId>org.opendaylight.controller</groupId>
6     <version>0.5.4-SNAPSHOT</version>
7
8     <artifactId>test</artifactId>
9
10     <build>
11         <plugins>
12             <plugin>
13                 <groupId>org.opendaylight.controller</groupId>
14                 <artifactId>yang-maven-plugin</artifactId>
15                 <version>0.5.4-SNAPSHOT</version>
16                 <executions>
17                     <execution>
18                         <goals>
19                             <goal>generate-sources</goal>
20                         </goals>
21                         <configuration>
22                             <yangFilesRootDir>../files</yangFilesRootDir>
23                             <inspectDependencies>false</inspectDependencies>
24                             <codeGenerators>
25                                 <generator>
26                                     <codeGeneratorClass>
27                                         org.opendaylight.controller.yang2sources.spi.CodeGeneratorTestImpl
28                                     </codeGeneratorClass>
29                                 </generator>
30                             </codeGenerators>
31                         </configuration>
32                     </execution>
33                 </executions>
34
35                 <dependencies>
36                     <dependency>
37                         <groupId>org.opendaylight.controller</groupId>
38                         <artifactId>yang-maven-plugin-spi</artifactId>
39                         <version>0.5.4-SNAPSHOT</version>
40                         <type>test-jar</type>
41                     </dependency>
42                 </dependencies>
43             </plugin>
44         </plugins>
45     </build>
46 </project>