5b46b6dfbc0b1a790534543603b04e099a2f16d8
[genius.git] / mdsalutil / mdsalutil-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. 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"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.genius</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>0.5.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>mdsalutil-impl</artifactId>
22   <version>0.5.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: genius :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-binding-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.openflowplugin.model</groupId>
35       <artifactId>model-flow-base</artifactId>
36       <version>${openflowplugin.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.genius</groupId>
40       <artifactId>mdsalutil-api</artifactId>
41       <version>0.5.0-SNAPSHOT</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.openflowplugin.model</groupId>
45       <artifactId>model-flow-service</artifactId>
46       <version>${openflowplugin.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>javax.inject</groupId>
50       <artifactId>javax.inject</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.infrautils</groupId>
54       <artifactId>diagstatus-api</artifactId>
55       <version>${genius.infrautils.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>org.ops4j.pax.cdi</groupId>
59       <artifactId>pax-cdi-api</artifactId>
60       <optional>true</optional>
61     </dependency>
62     <!--  TEST Dependencies -->
63     <dependency>
64       <groupId>com.google.truth</groupId>
65       <artifactId>truth</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.awaitility</groupId>
70       <artifactId>awaitility</artifactId>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.infrautils</groupId>
75       <artifactId>infrautils-testutils</artifactId>
76       <version>${genius.infrautils.version}</version>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.powermock</groupId>
81       <artifactId>powermock-module-junit4</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>org.powermock</groupId>
86       <artifactId>powermock-api-mockito</artifactId>
87       <scope>test</scope>
88     </dependency>
89     <dependency>
90       <groupId>org.opendaylight.controller</groupId>
91       <artifactId>sal-binding-broker-impl</artifactId>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller</groupId>
96       <artifactId>sal-binding-broker-impl</artifactId>
97       <scope>test</scope>
98       <type>test-jar</type>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.controller</groupId>
102       <artifactId>sal-test-model</artifactId>
103       <scope>test</scope>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>mdsalutil-api</artifactId>
108       <version>${project.version}</version>
109     </dependency>
110     <dependency>
111       <groupId>org.ops4j.pax.cdi</groupId>
112       <artifactId>pax-cdi-api</artifactId>
113       <optional>true</optional>
114     </dependency>
115   </dependencies>
116   <build>
117     <plugins>
118       <plugin>
119         <groupId>org.apache.aries.blueprint</groupId>
120         <artifactId>blueprint-maven-plugin</artifactId>
121       </plugin>
122     </plugins>
123   </build>
124 </project>