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