4ea61d9a16466f25a0321873e320231bc371be3c
[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.0-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   </scm>
15
16   <artifactId>commons.integrationtest</artifactId>
17   <version>0.5.0-SNAPSHOT</version>
18   <packaging>pom</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>equinoxSDK381</groupId>
23       <artifactId>org.eclipse.equinox.console</artifactId>
24       <version>1.0.0.v20120522-1841</version>
25     </dependency>
26     <dependency>
27       <groupId>equinoxSDK381</groupId>
28       <artifactId>org.eclipse.equinox.util</artifactId>
29       <version>1.0.400.v20120522-2049</version>
30     </dependency>
31     <dependency>
32       <groupId>equinoxSDK381</groupId>
33       <artifactId>org.eclipse.osgi.services</artifactId>
34       <version>3.3.100.v20120522-1822</version>
35     </dependency>
36     <dependency>
37       <groupId>equinoxSDK381</groupId>
38       <artifactId>org.eclipse.equinox.ds</artifactId>
39       <version>1.4.0.v20120522-1841</version>
40     </dependency>
41     <dependency>
42       <groupId>equinoxSDK381</groupId>
43       <artifactId>org.apache.felix.gogo.command</artifactId>
44       <version>0.8.0.v201108120515</version>
45     </dependency>
46     <dependency>
47       <groupId>equinoxSDK381</groupId>
48       <artifactId>org.apache.felix.gogo.runtime</artifactId>
49       <version>0.8.0.v201108120515</version>
50     </dependency>
51     <dependency>
52       <groupId>equinoxSDK381</groupId>
53       <artifactId>org.apache.felix.gogo.shell</artifactId>
54       <version>0.8.0.v201110170705</version>
55     </dependency>
56   </dependencies>
57
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.maven.plugins</groupId>
62         <artifactId>maven-surefire-plugin</artifactId>
63         <version>${surefire.version}</version>
64         <configuration>
65           <skipTests>true</skipTests>
66         </configuration>
67       </plugin>
68       <plugin>
69        <groupId>org.ops4j.pax.exam</groupId>
70        <artifactId>maven-paxexam-plugin</artifactId>
71        <version>1.2.4</version>
72         <executions>
73           <execution>
74             <id>generate-config</id>
75             <goals>
76               <goal>generate-depends-file</goal>
77             </goals>
78           </execution>
79         </executions>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-checkstyle-plugin</artifactId>
84         <version>${checkstyle.version}</version>
85         <dependencies>
86           <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>checkstyle</artifactId>
89             <version>0.0.1-SNAPSHOT</version>
90           </dependency>
91          </dependencies>
92         <configuration>
93           <failsOnError>true</failsOnError>
94           <configLocation>controller/space_and_tabs_checks.xml</configLocation>
95         </configuration>
96       </plugin>
97       <plugin>
98         <groupId>org.codehaus.mojo</groupId>
99         <artifactId>properties-maven-plugin</artifactId>
100         <version>${propertymavenplugin.version}</version>
101         <executions>
102           <execution>
103             <goals>
104               <goal>set-system-properties</goal>
105             </goals>
106             <configuration>
107               <properties>
108                 <property>
109                   <name>logback.configurationFile</name>
110                   <value>${project.parent.parent.basedir}/logback.xml</value>
111                 </property>
112               </properties>
113             </configuration>
114           </execution>
115         </executions>
116       </plugin>
117     </plugins>
118   </build>
119 </project>