Release Nitrogen
[bgpcep.git] / bgp / benchmark-app / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Cisco Systems, Inc. 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     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>config-parent</artifactId>
16         <version>0.8.0</version>
17         <relativePath>../../config-parent</relativePath>
18     </parent>
19
20     <artifactId>bgp-benchmark-app</artifactId>
21     <packaging>bundle</packaging>
22     <name>${project.artifactId}</name>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.google.guava</groupId>
27             <artifactId>guava</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.osgi</groupId>
31             <artifactId>org.osgi.core</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.slf4j</groupId>
35             <artifactId>slf4j-api</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.mdsal</groupId>
39             <artifactId>yang-binding</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.yangtools</groupId>
43             <artifactId>yang-common</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>concepts</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.mdsal.model</groupId>
51             <artifactId>ietf-inet-types-2013-07-15</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>bgp-rib-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>${project.groupId}</groupId>
59             <artifactId>bgp-parser-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>${project.groupId}</groupId>
63             <artifactId>bgp-concepts</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>${project.groupId}</groupId>
67             <artifactId>bgp-inet</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.controller</groupId>
71             <artifactId>config-api</artifactId>
72          </dependency>
73          <dependency>
74              <groupId>org.opendaylight.controller</groupId>
75              <artifactId>sal-binding-api</artifactId>
76          </dependency>
77          <dependency>
78              <groupId>org.opendaylight.controller</groupId>
79             <artifactId>sal-common-api</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.controller</groupId>
83             <artifactId>sal-binding-config</artifactId>
84         </dependency>
85         <!-- test dependencies -->
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>testtool-util</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>junit</groupId>
93             <artifactId>junit</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.mockito</groupId>
97             <artifactId>mockito-core</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal-binding-broker-impl</artifactId>
102             <scope>test</scope>
103             <type>test-jar</type>
104         </dependency>
105     </dependencies>
106
107     <scm>
108         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
109         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
110         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
111         <tag>HEAD</tag>
112     </scm>
113
114     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
115     <distributionManagement>
116         <site>
117             <id>opendaylight-site</id>
118             <url>${nexus.site.url}/${project.artifactId}/</url>
119         </site>
120     </distributionManagement>
121 </project>