Added notification benchmark (ntfbenchmark) and rpc benchmark models
[controller.git] / features / benchmark / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 Cisco Systems and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>features-parent</artifactId>
12     <version>1.6.0-SNAPSHOT</version>
13     <relativePath/>
14   </parent>
15   <groupId>org.opendaylight.controller</groupId>
16   <artifactId>benchmark-features</artifactId>
17   <version>1.1.0-SNAPSHOT</version>
18   <name>${project.artifactId}</name>
19   <modelVersion>4.0.0</modelVersion>
20   <prerequisites>
21     <maven>3.1.1</maven>
22   </prerequisites>
23
24   <properties>
25     <controller.mdsal.version>1.3.0-SNAPSHOT</controller.mdsal.version>
26     <mdsal.version>2.0.0-SNAPSHOT</mdsal.version>
27     <mdsal.model.version>0.8.0-SNAPSHOT</mdsal.model.version>
28     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
29     <config.benchmark.configfile>04-xsql.xml</config.benchmark.configfile>
30   </properties>
31
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>features-yangtools</artifactId>
36       <classifier>features</classifier>
37       <version>${yangtools.version}</version>
38       <type>xml</type>
39       <scope>runtime</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal</groupId>
43       <artifactId>features-mdsal</artifactId>
44       <version>${mdsal.version}</version>
45       <classifier>features</classifier>
46       <type>xml</type>
47       <scope>runtime</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.mdsal.model</groupId>
51       <artifactId>features-mdsal-model</artifactId>
52       <version>${mdsal.model.version}</version>
53       <classifier>features</classifier>
54       <type>xml</type>
55       <scope>runtime</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>features-mdsal</artifactId>
60       <classifier>features</classifier>
61       <version>${controller.mdsal.version}</version>
62       <type>xml</type>
63       <scope>runtime</scope>
64     </dependency>
65     <dependency>
66       <groupId>${project.groupId}</groupId>
67       <artifactId>dsbenchmark</artifactId>
68       <version>${project.version}</version>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>dsbenchmark</artifactId>
73       <version>${project.version}</version>
74       <type>xml</type>
75       <classifier>config</classifier>
76     </dependency>
77     <dependency>
78       <groupId>${project.groupId}</groupId>
79       <artifactId>ntfbenchmark</artifactId>
80       <version>${project.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>${project.groupId}</groupId>
84       <artifactId>ntfbenchmark</artifactId>
85       <version>${project.version}</version>
86       <type>xml</type>
87       <classifier>config</classifier>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>benchmark-api</artifactId>
92       <version>${project.version}</version>
93     </dependency>
94   </dependencies>
95 </project>