Eliminate explicit yangtools dependencies and pom cleanup
[openflowplugin.git] / applications / bulk-o-matic / pom.xml
1 <?xml version="1.0"?>
2 <project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5   <modelVersion>4.0.0</modelVersion>
6   <parent>
7     <groupId>org.opendaylight.openflowplugin</groupId>
8     <artifactId>applications</artifactId>
9     <version>0.6.0-SNAPSHOT</version>
10   </parent>
11   <groupId>org.opendaylight.openflowplugin.applications</groupId>
12   <artifactId>bulk-o-matic</artifactId>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.openflowplugin</groupId>
17       <artifactId>openflowplugin-api</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>sal-binding-api</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-binding-broker-impl</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller.model</groupId>
29       <artifactId>model-inventory</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.openflowplugin.model</groupId>
33       <artifactId>model-flow-base</artifactId>
34     </dependency>
35
36         <!-- Test dependencies -->
37     <dependency>
38       <groupId>org.mockito</groupId>
39       <artifactId>mockito-core</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <scope>test</scope>
46     </dependency>
47   </dependencies>
48
49   <build>
50     <plugins>
51       <plugin>
52         <groupId>org.apache.maven.plugins</groupId>
53         <artifactId>maven-checkstyle-plugin</artifactId>
54         <configuration>
55           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60 </project>