Increase timeout for waiting for broker service in sal-binding-it.
[controller.git] / opendaylight / commons / integrationtest / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.1-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>commons.integrationtest</artifactId>
18   <version>0.5.1-SNAPSHOT</version>
19   <packaging>pom</packaging>
20
21   <dependencies>
22     <dependency>
23       <groupId>equinoxSDK381</groupId>
24       <artifactId>org.eclipse.equinox.console</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>equinoxSDK381</groupId>
28       <artifactId>org.eclipse.equinox.util</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>equinoxSDK381</groupId>
32       <artifactId>org.eclipse.osgi.services</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>equinoxSDK381</groupId>
36       <artifactId>org.eclipse.equinox.ds</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>equinoxSDK381</groupId>
40       <artifactId>org.apache.felix.gogo.command</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>equinoxSDK381</groupId>
44       <artifactId>org.apache.felix.gogo.runtime</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>equinoxSDK381</groupId>
48       <artifactId>org.apache.felix.gogo.shell</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53     </dependency>
54     <!-- Add Pax Exam -->
55     <dependency>
56       <groupId>org.ops4j.pax.exam</groupId>
57       <artifactId>pax-exam-junit4</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.ops4j.pax.exam</groupId>
62       <artifactId>pax-exam-link-mvn</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.ops4j.pax.url</groupId>
67       <artifactId>pax-url-aether</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.slf4j</groupId>
72       <artifactId>log4j-over-slf4j</artifactId>
73     </dependency>
74     <dependency>
75        <groupId>ch.qos.logback</groupId>
76        <artifactId>logback-core</artifactId>
77      </dependency>
78      <dependency>
79        <groupId>ch.qos.logback</groupId>
80        <artifactId>logback-classic</artifactId>
81      </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.maven.plugins</groupId>
88         <artifactId>maven-surefire-plugin</artifactId>
89         <version>${surefire.version}</version>
90         <configuration>
91           <skipTests>true</skipTests>
92         </configuration>
93       </plugin>
94       <plugin>
95        <groupId>org.ops4j.pax.exam</groupId>
96        <artifactId>maven-paxexam-plugin</artifactId>
97        <version>1.2.4</version>
98         <executions>
99           <execution>
100             <id>generate-config</id>
101             <goals>
102               <goal>generate-depends-file</goal>
103             </goals>
104           </execution>
105         </executions>
106       </plugin>
107       <plugin>
108         <groupId>org.apache.maven.plugins</groupId>
109         <artifactId>maven-checkstyle-plugin</artifactId>
110         <version>${checkstyle.version}</version>
111         <dependencies>
112           <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>checkstyle</artifactId>
115             <version>0.0.2-SNAPSHOT</version>
116           </dependency>
117          </dependencies>
118         <configuration>
119           <failsOnError>true</failsOnError>
120           <configLocation>controller/checkstyle.xml</configLocation>
121         </configuration>
122       </plugin>
123       <plugin>
124         <groupId>org.codehaus.mojo</groupId>
125         <artifactId>properties-maven-plugin</artifactId>
126         <version>${propertymavenplugin.version}</version>
127         <executions>
128           <execution>
129             <goals>
130               <goal>set-system-properties</goal>
131             </goals>
132             <configuration>
133               <properties>
134                 <property>
135                   <name>logback.configurationFile</name>
136                   <value>${project.parent.parent.basedir}/logback.xml</value>
137                 </property>
138               </properties>
139             </configuration>
140           </execution>
141         </executions>
142       </plugin>
143     </plugins>
144   </build>
145 </project>