Upgrade ietf-{inet,yang}-types to 2013-07-15
[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 <!-- Copyright (c) 2016 Cisco Systems, Inc. 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 -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
14         <tag>HEAD</tag>
15     </scm>
16     <parent>
17         <groupId>org.opendaylight.bgpcep</groupId>
18         <artifactId>bgp-parent</artifactId>
19         <version>0.6.0-SNAPSHOT</version>
20     </parent>
21     <packaging>bundle</packaging>
22     <artifactId>bgp-benchmark-app</artifactId>
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>junit</groupId>
88             <artifactId>junit</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.mockito</groupId>
92             <artifactId>mockito-core</artifactId>
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     </dependencies>
101     <build>
102         <plugins>
103             <plugin>
104                 <groupId>org.opendaylight.yangtools</groupId>
105                 <artifactId>yang-maven-plugin</artifactId>
106             </plugin>
107             <plugin>
108                 <groupId>org.apache.felix</groupId>
109                 <artifactId>maven-bundle-plugin</artifactId>
110                 <extensions>true</extensions>
111                 <configuration>
112                     <instructions>
113                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
114                     </instructions>
115                 </configuration>
116             </plugin>
117             <plugin>
118                 <groupId>org.codehaus.mojo</groupId>
119                 <artifactId>build-helper-maven-plugin</artifactId>
120                 <executions>
121                     <execution>
122                         <id>attach-artifacts</id>
123                         <goals>
124                             <goal>attach-artifact</goal>
125                         </goals>
126                         <phase>package</phase>
127                         <configuration>
128                             <artifacts>
129                                 <artifact>
130                                     <file>${project.build.directory}/classes/initial/bgp-app-peer-benchmark.xml</file>
131                                     <type>xml</type>
132                                     <classifier>app-peer-benchmark-config</classifier>
133                                 </artifact>
134                             </artifacts>
135                         </configuration>
136                     </execution>
137                 </executions>
138             </plugin>
139         </plugins>
140     </build>
141
142   <!--
143       Maven Site Configuration
144
145       The following configuration is necessary for maven-site-plugin to
146       correctly identify the correct deployment path for OpenDaylight Maven
147       sites.
148   -->
149   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
150
151   <distributionManagement>
152     <site>
153       <id>opendaylight-site</id>
154       <url>${nexus.site.url}/${project.artifactId}/</url>
155     </site>
156   </distributionManagement>
157 </project>