Merge "Rough musings towards an MD-SAL OVSDB SB"
[ovsdb.git] / utils / config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <parent>
6     <artifactId>commons</artifactId>
7     <groupId>org.opendaylight.ovsdb</groupId>
8     <version>1.3.0-SNAPSHOT</version>
9     <relativePath>../../commons/parent/pom.xml</relativePath>
10   </parent>
11   <modelVersion>4.0.0</modelVersion>
12
13   <artifactId>utils.config</artifactId>
14   <name>OpenDaylight OVS configuration utility</name>
15   <version>1.1.0-SNAPSHOT</version>
16   <packaging>jar</packaging>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.osgi</groupId>
21       <artifactId>org.osgi.core</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>junit</groupId>
25       <artifactId>junit</artifactId>
26       <scope>test</scope>
27     </dependency>
28     <dependency>
29       <groupId>org.mockito</groupId>
30       <artifactId>mockito-core</artifactId>
31       <scope>test</scope>
32     </dependency>
33     <dependency>
34       <groupId>org.powermock</groupId>
35       <artifactId>powermock-api-mockito</artifactId>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.powermock</groupId>
40       <artifactId>powermock-core</artifactId>
41       <version>${powermock.version}</version>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.powermock</groupId>
46       <artifactId>powermock-module-junit4</artifactId>
47       <scope>test</scope>
48     </dependency>
49   </dependencies>
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-checkstyle-plugin</artifactId>
55       </plugin>
56       <plugin>
57         <groupId>org.jacoco</groupId>
58         <artifactId>jacoco-maven-plugin</artifactId>
59       </plugin>
60     </plugins>
61   </build>
62 </project>