Factored checkstyle config into it's own mvn project
[controller.git] / opendaylight / commons / integrationtest / pom.xml
index 4cd858274950c56e82bbc7a038c6970128e0d58b..031edd0f40570c260d168e205c37b33562394725 100644 (file)
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>${checkstyle.version}</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.opendaylight.controller</groupId>
+            <artifactId>checkstyle</artifactId>
+            <version>0.0.1</version>
+          </dependency>
+         </dependencies>
         <configuration>
           <failsOnError>true</failsOnError>
-          <configLocation>${project.parent.parent.basedir}/space_and_tabs_checks.xml</configLocation>
+          <configLocation>controller/space_and_tabs_checks.xml</configLocation>
         </configuration>
       </plugin>
       <plugin>