Merge "Replace mockito-all by mockito-core (see Bug 7662)"
[alto.git] / alto-basic / simple-ecs / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2015 Yale University and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12   <parent>
13     <groupId>org.opendaylight.controller</groupId>
14     <artifactId>config-parent</artifactId>
15     <version>0.6.0-SNAPSHOT</version>
16     <relativePath/>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.alto.basic</groupId>
21   <version>0.4.0-SNAPSHOT</version>
22   <artifactId>alto-simple-ecs-impl</artifactId>
23   <packaging>bundle</packaging>
24   <dependencies>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>alto-simple-ecs-api</artifactId>
28       <version>${project.version}</version>
29     </dependency>
30
31     <dependency>
32       <groupId>org.opendaylight.alto.core</groupId>
33       <artifactId>alto-resourcepool-api</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36
37     <dependency>
38       <groupId>org.opendaylight.alto.core</groupId>
39       <artifactId>alto-service-model-networkmap-api</artifactId>
40       <version>${project.version}</version>
41     </dependency>
42
43     <dependency>
44       <groupId>org.opendaylight.alto.core</groupId>
45       <artifactId>alto-service-model-endpointcost-api</artifactId>
46       <version>${project.version}</version>
47     </dependency>
48
49     <dependency>
50       <groupId>org.opendaylight.alto.core</groupId>
51       <artifactId>alto-northbound-api</artifactId>
52       <version>${project.version}</version>
53     </dependency>
54
55     <!-- Testing Dependencies -->
56     <dependency>
57       <groupId>junit</groupId>
58       <artifactId>junit</artifactId>
59       <scope>test</scope>
60     </dependency>
61
62     <dependency>
63       <groupId>org.mockito</groupId>
64       <artifactId>mockito-core</artifactId>
65       <scope>test</scope>
66     </dependency>
67
68
69     <dependency>
70       <groupId>org.opendaylight.l2switch.hosttracker</groupId>
71       <artifactId>hosttracker-model</artifactId>
72       <version>0.5.0-SNAPSHOT</version>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.l2switch.addresstracker</groupId>
76       <artifactId>addresstracker-model</artifactId>
77       <version>0.5.0-SNAPSHOT</version>
78     </dependency>
79
80     <dependency>
81       <groupId>org.opendaylight.controller.model</groupId>
82       <artifactId>model-inventory</artifactId>
83       <version>${mdsal.version}</version>
84       <type>jar</type>
85     </dependency>
86
87     <dependency>
88       <groupId>org.opendaylight.openflowplugin.model</groupId>
89       <artifactId>model-flow-statistics</artifactId>
90       <version>0.4.0-SNAPSHOT</version>
91     </dependency>
92   </dependencies>
93
94 </project>