Bug 1254 - increase unit test coverage
[openflowplugin.git] / openflowplugin / 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.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.0.3-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin</artifactId>
12     <packaging>bundle</packaging>
13
14     <properties>
15         <yangtools.version>0.6.2-SNAPSHOT</yangtools.version>
16         <yangtools.generator.version>0.6.2-SNAPSHOT</yangtools.generator.version>
17         <yangtools.binding.version>0.6.2-SNAPSHOT</yangtools.binding.version>
18         <jmxGeneratorPath>${project.build.directory}/generated-sources/config</jmxGeneratorPath>
19         <sal-binding-api.version>1.1-SNAPSHOT</sal-binding-api.version>
20         <sonar.jacoco.excludes>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflow*/*java</sonar.jacoco.excludes>
21     </properties>
22
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.apache.felix</groupId>
27                 <artifactId>maven-bundle-plugin</artifactId>
28             </plugin>
29             <plugin>
30                 <groupId>org.opendaylight.yangtools</groupId>
31                 <artifactId>yang-maven-plugin</artifactId>
32                 <executions>
33                     <execution>
34                         <goals>
35                             <goal>generate-sources</goal>
36                         </goals>
37                         <configuration>
38                             <codeGenerators>
39                                 <generator>
40                                     <codeGeneratorClass>
41                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
42                                     </codeGeneratorClass>
43                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
44                                     <additionalConfiguration>
45                                         <namespaceToPackage1>
46                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
47                                         </namespaceToPackage1>
48                                     </additionalConfiguration>
49                                 </generator>
50                                 <generator>
51                                     <codeGeneratorClass>
52                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
53                                     </codeGeneratorClass>
54                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
55                                 </generator>
56                                 <generator>
57                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
58                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
59                                 </generator>
60                             </codeGenerators>
61                             <inspectDependencies>true</inspectDependencies>
62                         </configuration>
63                     </execution>
64                 </executions>
65                 <dependencies>
66                     <dependency>
67                         <groupId>org.opendaylight.controller</groupId>
68                         <artifactId>yang-jmx-generator-plugin</artifactId>
69                         <version>${config.parent.version}</version>
70                     </dependency>
71                     <dependency>
72                         <groupId>org.opendaylight.yangtools</groupId>
73                         <artifactId>maven-sal-api-gen-plugin</artifactId>
74                         <version>${yangtools.version}</version>
75                         <type>jar</type>
76                     </dependency>
77                 </dependencies>
78             </plugin>
79         </plugins>
80     </build>
81     <dependencies>
82         <dependency>
83             <groupId>org.opendaylight.openflowplugin</groupId>
84             <artifactId>openflowplugin-api</artifactId>
85             <version>${project.version}</version>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.openflowplugin</groupId>
89             <artifactId>openflowplugin-extension-api</artifactId>
90             <version>${project.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>liblldp</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.controller.model</groupId>
98             <artifactId>model-flow-base</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller.model</groupId>
102             <artifactId>model-flow-service</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.controller.model</groupId>
106             <artifactId>model-flow-statistics</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.controller.model</groupId>
110             <artifactId>model-inventory</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>sal-binding-api</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.opendaylight.controller</groupId>
118             <artifactId>sal-binding-broker-impl</artifactId>
119             <version>${sal-binding-api.version}</version>
120         </dependency>
121
122         <dependency>
123             <groupId>org.opendaylight.openflowjava</groupId>
124             <artifactId>openflow-protocol-api</artifactId>
125         </dependency>
126         <dependency>
127             <groupId>org.opendaylight.openflowjava</groupId>
128             <artifactId>openflow-protocol-spi</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.openflowjava</groupId>
132             <artifactId>openflow-protocol-impl</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.controller</groupId>
136             <artifactId>config-api</artifactId>
137         </dependency>
138
139         <dependency>
140             <groupId>com.google.guava</groupId>
141             <artifactId>guava</artifactId>
142         </dependency>
143         <dependency>
144             <groupId>org.apache.commons</groupId>
145             <artifactId>commons-lang3</artifactId>
146         </dependency>
147
148         <dependency>
149             <groupId>junit</groupId>
150             <artifactId>junit</artifactId>
151             <scope>test</scope>
152         </dependency>
153         <dependency>
154             <groupId>org.mockito</groupId>
155             <artifactId>mockito-all</artifactId>
156             <scope>test</scope>
157         </dependency>
158
159         <dependency>
160             <groupId>org.slf4j</groupId>
161             <artifactId>slf4j-log4j12</artifactId>
162         </dependency>
163         <dependency>
164             <groupId>org.opendaylight.controller</groupId>
165             <artifactId>sal-common-util</artifactId>
166         </dependency>
167         <dependency>
168             <groupId>org.opendaylight.openflowjava</groupId>
169             <artifactId>util</artifactId>
170         </dependency>
171     </dependencies>
172 </project>
173