Release Nitrogen
[bgpcep.git] / bgp / testtool / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 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     <scm>
14         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
15         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
16         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
17         <tag>HEAD</tag>
18     </scm>
19     <parent>
20         <groupId>org.opendaylight.odlparent</groupId>
21         <artifactId>odlparent</artifactId>
22         <version>2.0.7</version>
23         <relativePath/>
24     </parent>
25
26     <groupId>org.opendaylight.bgpcep</groupId>
27     <artifactId>bgp-testtool</artifactId>
28     <version>0.8.3</version>
29     <packaging>jar</packaging>
30     <description>BGP Interop Testing Tool</description>
31     <name>${project.artifactId}</name>
32
33     <dependencyManagement>
34         <dependencies>
35             <dependency>
36                 <groupId>org.opendaylight.bgpcep</groupId>
37                 <artifactId>bgpcep-parent</artifactId>
38                 <version>0.8.3</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42         </dependencies>
43     </dependencyManagement>
44
45     <dependencies>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>bgp-concepts</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>bgp-linkstate</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>bgp-parser-api</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>bgp-parser-spi</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>bgp-rib-spi</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>bgp-rib-impl</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}</groupId>
72             <artifactId>testtool-util</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.opendaylight.mdsal</groupId>
76             <artifactId>yang-binding</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.mdsal.model</groupId>
80             <artifactId>ietf-inet-types-2013-07-15</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>bgp-inet</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>bgp-evpn</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>bgp-flowspec</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>bgp-labeled-unicast</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>${project.groupId}</groupId>
100             <artifactId>bgp-l3vpn</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>io.netty</groupId>
104             <artifactId>netty-common</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>io.netty</groupId>
108             <artifactId>netty-transport</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.slf4j</groupId>
112             <artifactId>slf4j-api</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>com.google.guava</groupId>
116             <artifactId>guava</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>ch.qos.logback</groupId>
120             <artifactId>logback-classic</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>net.sourceforge.argparse4j</groupId>
124             <artifactId>argparse4j</artifactId>
125             <version>0.7.0</version>
126         </dependency>
127     </dependencies>
128
129     <build>
130         <plugins>
131             <plugin>
132                 <groupId>org.apache.maven.plugins</groupId>
133                 <artifactId>maven-jar-plugin</artifactId>
134                 <configuration>
135                     <archive>
136                         <manifest>
137                             <mainClass>org.opendaylight.protocol.bgp.testtool.Main</mainClass>
138                         </manifest>
139                     </archive>
140                 </configuration>
141             </plugin>
142             <plugin>
143                 <groupId>org.apache.maven.plugins</groupId>
144                 <artifactId>maven-shade-plugin</artifactId>
145                 <configuration>
146                 </configuration>
147                 <executions>
148                     <execution>
149                         <phase>package</phase>
150                         <goals>
151                             <goal>shade</goal>
152                         </goals>
153                         <configuration>
154                             <filters>
155                                 <filter>
156                                     <artifact>*:*</artifact>
157                                     <excludes>
158                                         <exclude>org/datanucleus/**</exclude>
159                                         <exclude>META-INF/*.SF</exclude>
160                                         <exclude>META-INF/*.DSA</exclude>
161                                         <exclude>META-INF/*.RSA</exclude>
162                                     </excludes>
163                                 </filter>
164                             </filters>
165                             <transformers>
166                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
167                                     <mainClass>org.opendaylight.protocol.bgp.testtool.Main</mainClass>
168                                 </transformer>
169                             </transformers>
170                             <shadedArtifactAttached>true</shadedArtifactAttached>
171                             <shadedClassifierName>executable</shadedClassifierName>
172                         </configuration>
173                     </execution>
174                 </executions>
175             </plugin>
176         </plugins>
177     </build>
178
179   <!--
180       Maven Site Configuration
181
182       The following configuration is necessary for maven-site-plugin to
183       correctly identify the correct deployment path for OpenDaylight Maven
184       sites.
185   -->
186   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
187
188   <distributionManagement>
189     <site>
190       <id>opendaylight-site</id>
191       <url>${nexus.site.url}/${project.artifactId}/</url>
192     </site>
193   </distributionManagement>
194 </project>