04e0b5e490910f54bbbb6477a9104c3321d72703
[ovsdb.git] / library / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: --><!--
3 Copyright (c) 2014 Cisco Systems, 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" 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">
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>library</artifactId>
21   <version>1.2.1-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23   <dependencies>
24     <dependency>
25       <groupId>com.fasterxml.jackson.core</groupId>
26       <artifactId>jackson-annotations</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>com.fasterxml.jackson.core</groupId>
30       <artifactId>jackson-core</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>com.fasterxml.jackson.core</groupId>
34       <artifactId>jackson-databind</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.osgi</groupId>
38       <artifactId>org.osgi.core</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>com.google.guava</groupId>
42       <artifactId>guava</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>io.netty</groupId>
46       <artifactId>netty-all</artifactId>
47       <version>4.0.26.Final</version>
48     </dependency>
49     <dependency>
50       <groupId>org.slf4j</groupId>
51       <artifactId>slf4j-api</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>config-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>sal-binding-api</artifactId>
60     </dependency>
61
62     <!-- Testing Dependencies -->
63     <dependency>
64       <groupId>junit</groupId>
65       <artifactId>junit</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.slf4j</groupId>
70       <artifactId>slf4j-simple</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.mockito</groupId>
75       <artifactId>mockito-all</artifactId>
76       <scope>test</scope>
77     </dependency>
78   </dependencies>
79
80   <build>
81     <testResources>
82       <testResource>
83         <filtering>true</filtering>
84         <directory>src/test/resources</directory>
85       </testResource>
86     </testResources>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-checkstyle-plugin</artifactId>
91       </plugin>
92       <plugin>
93         <groupId>org.apache.maven.plugins</groupId>
94         <artifactId>maven-failsafe-plugin</artifactId>
95       </plugin>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-surefire-plugin</artifactId>
99       </plugin>
100       <plugin>
101         <groupId>org.jacoco</groupId>
102         <artifactId>jacoco-maven-plugin</artifactId>
103       </plugin>
104     </plugins>
105   </build>
106
107 </project>