1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
4 Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
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">
14 <modelVersion>4.0.0</modelVersion>
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/display/ODL/BGPCEP</url>
22 <groupId>org.opendaylight.bgpcep</groupId>
23 <artifactId>testtool-parent</artifactId>
24 <version>0.21.6-SNAPSHOT</version>
25 <relativePath>../../testtool-parent</relativePath>
28 <artifactId>bgp-testtool</artifactId>
29 <version>0.21.6-SNAPSHOT</version>
30 <packaging>jar</packaging>
31 <description>BGP Interop Testing Tool</description>
32 <name>${project.artifactId}</name>
35 <!-- We are shading things, override defaults -->
36 <odlparent.dependency.enforce>false</odlparent.dependency.enforce>
41 <groupId>${project.groupId}</groupId>
42 <artifactId>bgp-concepts</artifactId>
45 <groupId>${project.groupId}</groupId>
46 <artifactId>bgp-linkstate</artifactId>
49 <groupId>${project.groupId}</groupId>
50 <artifactId>bgp-parser-api</artifactId>
53 <groupId>${project.groupId}</groupId>
54 <artifactId>bgp-parser-spi</artifactId>
57 <groupId>${project.groupId}</groupId>
58 <artifactId>bgp-parser-impl</artifactId>
61 <groupId>${project.groupId}</groupId>
62 <artifactId>concepts</artifactId>
65 <groupId>${project.groupId}</groupId>
66 <artifactId>bgp-rib-api</artifactId>
69 <groupId>${project.groupId}</groupId>
70 <artifactId>bgp-rib-spi</artifactId>
73 <groupId>${project.groupId}</groupId>
74 <artifactId>bgp-rib-impl</artifactId>
77 <groupId>${project.groupId}</groupId>
78 <artifactId>testtool-util</artifactId>
81 <groupId>org.opendaylight.yangtools</groupId>
82 <artifactId>yang-common</artifactId>
85 <groupId>org.opendaylight.mdsal</groupId>
86 <artifactId>yang-binding</artifactId>
89 <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
90 <artifactId>rfc6991-ietf-inet-types</artifactId>
93 <groupId>${project.groupId}</groupId>
94 <artifactId>bgp-inet</artifactId>
97 <groupId>${project.groupId}</groupId>
98 <artifactId>bgp-evpn</artifactId>
101 <groupId>${project.groupId}</groupId>
102 <artifactId>bgp-flowspec</artifactId>
105 <groupId>${project.groupId}</groupId>
106 <artifactId>bgp-labeled-unicast</artifactId>
109 <groupId>${project.groupId}</groupId>
110 <artifactId>bgp-l3vpn</artifactId>
113 <groupId>${project.groupId}</groupId>
114 <artifactId>bgp-route-target</artifactId>
117 <groupId>${project.groupId}</groupId>
118 <artifactId>util</artifactId>
121 <groupId>io.netty</groupId>
122 <artifactId>netty-common</artifactId>
125 <groupId>io.netty</groupId>
126 <artifactId>netty-transport</artifactId>
129 <groupId>org.slf4j</groupId>
130 <artifactId>slf4j-api</artifactId>
133 <groupId>com.google.guava</groupId>
134 <artifactId>guava</artifactId>
137 <groupId>ch.qos.logback</groupId>
138 <artifactId>logback-classic</artifactId>
141 <groupId>org.opendaylight.mdsal</groupId>
142 <artifactId>mdsal-common-api</artifactId>
145 <groupId>net.sourceforge.argparse4j</groupId>
146 <artifactId>argparse4j</artifactId>
147 <version>0.9.0</version>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-jar-plugin</artifactId>
159 <mainClass>org.opendaylight.protocol.bgp.testtool.Main</mainClass>
165 <groupId>org.apache.maven.plugins</groupId>
166 <artifactId>maven-shade-plugin</artifactId>
171 <phase>package</phase>
178 <artifact>*:*</artifact>
180 <exclude>org/datanucleus/**</exclude>
181 <exclude>META-INF/*.SF</exclude>
182 <exclude>META-INF/*.DSA</exclude>
183 <exclude>META-INF/*.RSA</exclude>
188 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
189 <mainClass>org.opendaylight.protocol.bgp.testtool.Main</mainClass>
191 <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
193 <shadedArtifactAttached>true</shadedArtifactAttached>
194 <shadedClassifierName>executable</shadedClassifierName>