5e101ebd2856e8706e4a0b4d422c1d146a2f35e7
[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       <version>1.0.0.v20120522-1841</version>
26     </dependency>
27     <dependency>
28       <groupId>equinoxSDK381</groupId>
29       <artifactId>org.eclipse.equinox.util</artifactId>
30       <version>1.0.400.v20120522-2049</version>
31     </dependency>
32     <dependency>
33       <groupId>equinoxSDK381</groupId>
34       <artifactId>org.eclipse.osgi.services</artifactId>
35       <version>3.3.100.v20120522-1822</version>
36     </dependency>
37     <dependency>
38       <groupId>equinoxSDK381</groupId>
39       <artifactId>org.eclipse.equinox.ds</artifactId>
40       <version>1.4.0.v20120522-1841</version>
41     </dependency>
42     <dependency>
43       <groupId>equinoxSDK381</groupId>
44       <artifactId>org.apache.felix.gogo.command</artifactId>
45       <version>0.8.0.v201108120515</version>
46     </dependency>
47     <dependency>
48       <groupId>equinoxSDK381</groupId>
49       <artifactId>org.apache.felix.gogo.runtime</artifactId>
50       <version>0.8.0.v201108120515</version>
51     </dependency>
52     <dependency>
53       <groupId>equinoxSDK381</groupId>
54       <artifactId>org.apache.felix.gogo.shell</artifactId>
55       <version>0.8.0.v201110170705</version>
56     </dependency>
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60     </dependency>
61     <!-- Add Pax Exam -->
62     <dependency>
63       <groupId>org.ops4j.pax.exam</groupId>
64       <artifactId>pax-exam-container-native</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.ops4j.pax.exam</groupId>
69       <artifactId>pax-exam-junit4</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.ops4j.pax.exam</groupId>
74       <artifactId>pax-exam-link-mvn</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.ops4j.pax.url</groupId>
79       <artifactId>pax-url-aether</artifactId>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.slf4j</groupId>
84       <artifactId>log4j-over-slf4j</artifactId>
85     </dependency>
86     <dependency>
87        <groupId>ch.qos.logback</groupId>
88        <artifactId>logback-core</artifactId>
89      </dependency>
90      <dependency>
91        <groupId>ch.qos.logback</groupId>
92        <artifactId>logback-classic</artifactId>
93      </dependency>
94   </dependencies>
95
96   <build>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-surefire-plugin</artifactId>
101         <version>${surefire.version}</version>
102         <configuration>
103           <skipTests>true</skipTests>
104         </configuration>
105       </plugin>
106       <plugin>
107        <groupId>org.ops4j.pax.exam</groupId>
108        <artifactId>maven-paxexam-plugin</artifactId>
109        <version>1.2.4</version>
110         <executions>
111           <execution>
112             <id>generate-config</id>
113             <goals>
114               <goal>generate-depends-file</goal>
115             </goals>
116           </execution>
117         </executions>
118       </plugin>
119       <plugin>
120         <groupId>org.apache.maven.plugins</groupId>
121         <artifactId>maven-checkstyle-plugin</artifactId>
122         <version>${checkstyle.version}</version>
123         <dependencies>
124           <dependency>
125             <groupId>org.opendaylight.controller</groupId>
126             <artifactId>checkstyle</artifactId>
127             <version>0.0.2-SNAPSHOT</version>
128           </dependency>
129          </dependencies>
130         <configuration>
131           <failsOnError>true</failsOnError>
132           <configLocation>controller/checkstyle.xml</configLocation>
133         </configuration>
134       </plugin>
135       <plugin>
136         <groupId>org.codehaus.mojo</groupId>
137         <artifactId>properties-maven-plugin</artifactId>
138         <version>${propertymavenplugin.version}</version>
139         <executions>
140           <execution>
141             <goals>
142               <goal>set-system-properties</goal>
143             </goals>
144             <configuration>
145               <properties>
146                 <property>
147                   <name>logback.configurationFile</name>
148                   <value>${project.parent.parent.basedir}/logback.xml</value>
149                 </property>
150               </properties>
151             </configuration>
152           </execution>
153         </executions>
154       </plugin>
155     </plugins>
156   </build>
157 </project>