Merge "Fixed if/else/for/while/do curly braces for LBaaSPoolMemberHandler.java"
[ovsdb.git] / southbound / southbound-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.3.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>southbound-impl</artifactId>
21   <version>1.1.0-SNAPSHOT</version>
22   <packaging>bundle</packaging>
23
24   <properties>
25     <powermock.version>1.5.2</powermock.version>
26   </properties>
27
28   <dependencies>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>southbound-api</artifactId>
32       <version>${project.version}</version>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>library</artifactId>
37       <version>${project.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>com.google.guava</groupId>
41       <artifactId>guava</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>schema.openvswitch</artifactId>
46       <version>${project.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-core-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>junit</groupId>
54       <artifactId>junit</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.powermock</groupId>
59       <artifactId>powermock-api-mockito</artifactId>
60       <version>${powermock.version}</version>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.powermock</groupId>
65       <artifactId>powermock-module-junit4</artifactId>
66       <version>${powermock.version}</version>
67       <scope>test</scope>
68     </dependency>
69   </dependencies>
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.felix</groupId>
74         <artifactId>maven-bundle-plugin</artifactId>
75         <configuration>
76           <instructions>
77             <Private-Package>!org.opendaylight.ovsdb.lib.osgi,org.opendaylight.ovsdb.lib.*,org.opendaylight.ovsdb.schema.openvswitch</Private-Package>
78             <Export-Package>org.opendaylight.ovsdb.southbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.southbound.impl.rev141210</Export-Package>
79           </instructions>
80         </configuration>
81       </plugin>
82       <plugin>
83         <groupId>org.apache.maven.plugins</groupId>
84         <artifactId>maven-checkstyle-plugin</artifactId>
85         <configuration>
86           <configLocation>
87             ${project.basedir}/../../commons/parent/src/main/resources/ovsdb_checks.xml
88           </configLocation>
89           <failsOnError>true</failsOnError>
90           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
91           <excludes>**/yang/</excludes>
92         </configuration>
93       </plugin>
94       <plugin>
95         <groupId>org.jacoco</groupId>
96         <artifactId>jacoco-maven-plugin</artifactId>
97       </plugin>
98     </plugins>
99   </build>
100
101 </project>