Merge "Revert "Add break in iteration over vlan tags for a given ovsdbTerminationPoint""
[netvirt.git] / plugin-shell / 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     <groupId>org.opendaylight.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>plugin-shell</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>junit</groupId>
28       <artifactId>junit</artifactId>
29       <scope>test</scope>
30     </dependency>
31     <dependency>
32       <groupId>org.apache.karaf.shell</groupId>
33       <artifactId>org.apache.karaf.shell.console</artifactId>
34       <version>${karaf.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>com.fasterxml.jackson.core</groupId>
38       <artifactId>jackson-databind</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.mockito</groupId>
42       <artifactId>mockito-core</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.powermock</groupId>
47       <artifactId>powermock-api-mockito</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.powermock</groupId>
52       <artifactId>powermock-core</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.powermock</groupId>
57       <artifactId>powermock-module-junit4</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.ovsdb</groupId>
62       <artifactId>library</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.ovsdb</groupId>
66       <artifactId>plugin</artifactId>
67     </dependency>
68   </dependencies>
69
70   <build>
71     <plugins>
72       <plugin>
73         <groupId>org.apache.felix</groupId>
74         <artifactId>maven-bundle-plugin</artifactId>
75         <version>2.4.0</version>
76         <extensions>true</extensions>
77         <configuration>
78           <instructions>
79             <Import-Package>org.apache.felix.service.command,
80               org.apache.karaf.shell.commands,
81               org.apache.karaf.shell.console,
82               *</Import-Package>
83           </instructions>
84         </configuration>
85       </plugin>
86       <plugin>
87         <groupId>org.apache.maven.plugins</groupId>
88         <artifactId>maven-checkstyle-plugin</artifactId>
89       </plugin>
90       <plugin>
91         <groupId>org.jacoco</groupId>
92         <artifactId>jacoco-maven-plugin</artifactId>
93       </plugin>
94     </plugins>
95   </build>
96
97 </project>