Merge "Fix typo (Don't know why I wanted indentidentifiers ;)"
[netvirt.git] / utils / mdsal-node / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 Red Hat, Inc. and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <artifactId>commons</artifactId>
16     <groupId>org.opendaylight.ovsdb</groupId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent/pom.xml</relativePath>
19   </parent>
20
21   <artifactId>utils.mdsal-node</artifactId>
22   <name>${project.artifactId}</name>
23   <version>1.1.0-SNAPSHOT</version>
24   <packaging>jar</packaging>
25
26   <dependencies>
27     <dependency>
28       <groupId>org.apache.commons</groupId>
29       <artifactId>commons-lang3</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.apache.felix</groupId>
33       <artifactId>org.apache.felix.dependencymanager</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>com.google.guava</groupId>
37       <artifactId>guava</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller.model</groupId>
45       <artifactId>model-inventory</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.slf4j</groupId>
49       <artifactId>slf4j-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>junit</groupId>
53       <artifactId>junit</artifactId>
54       <scope>test</scope>
55     </dependency>
56   </dependencies>
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-checkstyle-plugin</artifactId>
62       </plugin>
63       <plugin>
64         <groupId>org.jacoco</groupId>
65         <artifactId>jacoco-maven-plugin</artifactId>
66       </plugin>
67     </plugins>
68   </build>
69 </project>