Increase timeout for waiting for broker service in sal-binding-it.
[controller.git] / opendaylight / config / yang-jmx-generator-it / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <artifactId>config-subsystem</artifactId>
8         <groupId>org.opendaylight.controller</groupId>
9         <version>0.2.3-SNAPSHOT</version>
10     </parent>
11
12     <artifactId>yang-jmx-generator-it</artifactId>
13     <name>${project.artifactId}</name>
14
15     <dependencies>
16         <dependency>
17             <groupId>${project.groupId}</groupId>
18             <artifactId>config-api</artifactId>
19             <scope>test</scope>
20         </dependency>
21         <dependency>
22             <groupId>${project.groupId}</groupId>
23             <artifactId>yang-test</artifactId>
24             <scope>test</scope>
25         </dependency>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>config-manager</artifactId>
29             <scope>test</scope>
30             <type>test-jar</type>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>config-manager</artifactId>
35             <scope>test</scope>
36         </dependency>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>config-util</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>mockito-configuration</artifactId>
45         </dependency>
46     </dependencies>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-surefire-plugin</artifactId>
53                 <configuration>
54                     <forkCount>1</forkCount>
55                     <reuseForks>false</reuseForks>
56                     <perCoreThreadCount>false</perCoreThreadCount>
57                 </configuration>
58                 <executions>
59                     <execution>
60                         <id>default-test</id>
61                         <configuration>
62                             <skip>true</skip>
63                         </configuration>
64                     </execution>
65                     <execution>
66                         <id>integration-tests</id>
67                         <phase>integration-test</phase>
68                         <goals>
69                             <goal>test</goal>
70                         </goals>
71                         <configuration>
72                             <includes>
73                                 <include>**/org/opendaylight/controller/config/yangjmxgenerator/it/*.java</include>
74                             </includes>
75                             <skip>false</skip>
76                         </configuration>
77                     </execution>
78                 </executions>
79             </plugin>
80         </plugins>
81     </build>
82 </project>