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