Bump versions by x.y.(z+1)
[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
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <scm>
16         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
17         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
18         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
19         <tag>HEAD</tag>
20     </scm>
21     <parent>
22         <groupId>org.opendaylight.bgpcep</groupId>
23         <artifactId>testtool-parent</artifactId>
24         <version>0.12.0-SNAPSHOT</version>
25         <relativePath>../../testtool-parent</relativePath>
26     </parent>
27
28     <artifactId>bgp-testtool</artifactId>
29     <version>0.12.0-SNAPSHOT</version>
30     <packaging>jar</packaging>
31     <description>BGP Interop Testing Tool</description>
32     <name>${project.artifactId}</name>
33
34     <dependencies>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>bgp-concepts</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>${project.groupId}</groupId>
41             <artifactId>bgp-linkstate</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>bgp-parser-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}</groupId>
49             <artifactId>bgp-parser-spi</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>${project.groupId}</groupId>
53             <artifactId>bgp-parser-impl</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>concepts</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>bgp-rib-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>bgp-rib-spi</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>bgp-rib-impl</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>testtool-util</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.mdsal</groupId>
77             <artifactId>yang-binding</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
81             <artifactId>rfc6991-ietf-inet-types</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>${project.groupId}</groupId>
85             <artifactId>bgp-inet</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>${project.groupId}</groupId>
89             <artifactId>bgp-evpn</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>bgp-flowspec</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>${project.groupId}</groupId>
97             <artifactId>bgp-labeled-unicast</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>bgp-l3vpn</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>${project.groupId}</groupId>
105             <artifactId>bgp-route-target</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>${project.groupId}</groupId>
109             <artifactId>util</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>io.netty</groupId>
113             <artifactId>netty-common</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>io.netty</groupId>
117             <artifactId>netty-transport</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.slf4j</groupId>
121             <artifactId>slf4j-api</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>com.google.guava</groupId>
125             <artifactId>guava</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>ch.qos.logback</groupId>
129             <artifactId>logback-classic</artifactId>
130         </dependency>
131         <dependency>
132             <groupId>org.opendaylight.mdsal</groupId>
133             <artifactId>mdsal-common-api</artifactId>
134         </dependency>
135         <dependency>
136             <groupId>net.sourceforge.argparse4j</groupId>
137             <artifactId>argparse4j</artifactId>
138             <version>0.7.0</version>
139         </dependency>
140     </dependencies>
141
142     <build>
143         <plugins>
144             <plugin>
145                 <groupId>org.apache.maven.plugins</groupId>
146                 <artifactId>maven-jar-plugin</artifactId>
147                 <configuration>
148                     <archive>
149                         <manifest>
150                             <mainClass>org.opendaylight.protocol.bgp.testtool.Main</mainClass>
151                         </manifest>
152                     </archive>
153                 </configuration>
154             </plugin>
155             <plugin>
156                 <groupId>org.apache.maven.plugins</groupId>
157                 <artifactId>maven-shade-plugin</artifactId>
158                 <configuration>
159                 </configuration>
160                 <executions>
161                     <execution>
162                         <phase>package</phase>
163                         <goals>
164                             <goal>shade</goal>
165                         </goals>
166                         <configuration>
167                             <filters>
168                                 <filter>
169                                     <artifact>*:*</artifact>
170                                     <excludes>
171                                         <exclude>org/datanucleus/**</exclude>
172                                         <exclude>META-INF/*.SF</exclude>
173                                         <exclude>META-INF/*.DSA</exclude>
174                                         <exclude>META-INF/*.RSA</exclude>
175                                     </excludes>
176                                 </filter>
177                             </filters>
178                             <transformers>
179                                 <transformer
180                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
181                                     <mainClass>org.opendaylight.protocol.bgp.testtool.Main</mainClass>
182                                 </transformer>
183                             </transformers>
184                             <shadedArtifactAttached>true</shadedArtifactAttached>
185                             <shadedClassifierName>executable</shadedClassifierName>
186                         </configuration>
187                     </execution>
188                 </executions>
189             </plugin>
190         </plugins>
191     </build>
192 </project>