removed parent dependency on pax-exam-container-native
[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-junit4</artifactId>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.ops4j.pax.exam</groupId>
69       <artifactId>pax-exam-link-mvn</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.ops4j.pax.url</groupId>
74       <artifactId>pax-url-aether</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.slf4j</groupId>
79       <artifactId>log4j-over-slf4j</artifactId>
80     </dependency>
81     <dependency>
82        <groupId>ch.qos.logback</groupId>
83        <artifactId>logback-core</artifactId>
84      </dependency>
85      <dependency>
86        <groupId>ch.qos.logback</groupId>
87        <artifactId>logback-classic</artifactId>
88      </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.maven.plugins</groupId>
95         <artifactId>maven-surefire-plugin</artifactId>
96         <version>${surefire.version}</version>
97         <configuration>
98           <skipTests>true</skipTests>
99         </configuration>
100       </plugin>
101       <plugin>
102        <groupId>org.ops4j.pax.exam</groupId>
103        <artifactId>maven-paxexam-plugin</artifactId>
104        <version>1.2.4</version>
105         <executions>
106           <execution>
107             <id>generate-config</id>
108             <goals>
109               <goal>generate-depends-file</goal>
110             </goals>
111           </execution>
112         </executions>
113       </plugin>
114       <plugin>
115         <groupId>org.apache.maven.plugins</groupId>
116         <artifactId>maven-checkstyle-plugin</artifactId>
117         <version>${checkstyle.version}</version>
118         <dependencies>
119           <dependency>
120             <groupId>org.opendaylight.controller</groupId>
121             <artifactId>checkstyle</artifactId>
122             <version>0.0.2-SNAPSHOT</version>
123           </dependency>
124          </dependencies>
125         <configuration>
126           <failsOnError>true</failsOnError>
127           <configLocation>controller/checkstyle.xml</configLocation>
128         </configuration>
129       </plugin>
130       <plugin>
131         <groupId>org.codehaus.mojo</groupId>
132         <artifactId>properties-maven-plugin</artifactId>
133         <version>${propertymavenplugin.version}</version>
134         <executions>
135           <execution>
136             <goals>
137               <goal>set-system-properties</goal>
138             </goals>
139             <configuration>
140               <properties>
141                 <property>
142                   <name>logback.configurationFile</name>
143                   <value>${project.parent.parent.basedir}/logback.xml</value>
144                 </property>
145               </properties>
146             </configuration>
147           </execution>
148         </executions>
149       </plugin>
150     </plugins>
151   </build>
152 </project>