b35cb42e04e29cafde07fb1b4a574b37484fa078
[bgpcep.git] / bgp / testtool / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6         <parent>
7         <groupId>org.opendaylight.bgpcep</groupId>
8         <artifactId>bgp-parent</artifactId>
9         <version>0.3.0-SNAPSHOT</version>
10     </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>bgp-testtool</artifactId>
14         <description>BGP Interop Testing Tool</description>
15         <packaging>jar</packaging>
16         <name>${project.artifactId}</name>
17         <prerequisites>
18                 <maven>3.0.4</maven>
19         </prerequisites>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>${project.groupId}</groupId>
24                         <artifactId>bgp-concepts</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>bgp-parser-api</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>${project.groupId}</groupId>
32                         <artifactId>bgp-parser-impl</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>${project.groupId}</groupId>
36                         <artifactId>bgp-rib-impl</artifactId>
37         </dependency>
38
39                 <dependency>
40                         <groupId>${project.groupId}</groupId>
41                         <artifactId>concepts</artifactId>
42                 </dependency>
43         <dependency>
44                         <groupId>${project.groupId}</groupId>
45                         <artifactId>framework</artifactId>
46         </dependency>
47
48                 <dependency>
49                         <groupId>org.slf4j</groupId>
50                         <artifactId>slf4j-api</artifactId>
51                 </dependency>
52                 <dependency>
53                         <groupId>ch.qos.logback</groupId>
54                         <artifactId>logback-classic</artifactId>
55                         <version>${logback.version}</version>
56                         <scope>runtime</scope>
57                 </dependency>
58         </dependencies>
59
60         <build>
61                 <plugins>
62             <plugin>
63                 <groupId>org.apache.maven.plugins</groupId>
64                 <artifactId>maven-jar-plugin</artifactId>
65                 <configuration>
66                     <archive>
67                         <manifest>
68                             <mainClass>org.opendaylight.protocol.bgp.testtool.Main</mainClass>
69                         </manifest>
70                     </archive>
71                 </configuration>
72             </plugin>
73                         <plugin>
74                                 <groupId>org.apache.maven.plugins</groupId>
75                                 <artifactId>maven-shade-plugin</artifactId>
76                 <version>${maven.shade.version}</version>
77                                 <configuration>
78                                 </configuration>
79                                 <executions>
80                                         <execution>
81                                                 <phase>package</phase>
82                                                 <goals>
83                                                         <goal>shade</goal>
84                                                 </goals>
85                                                 <configuration>
86                                                         <transformers>
87                                                                 <transformer
88                                                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
89                                                                         <mainClass>org.opendaylight.protocol.bgp.testtool.Main</mainClass>
90                                                                 </transformer>
91                                                         </transformers>
92                                                         <shadedArtifactAttached>true</shadedArtifactAttached>
93                                                         <shadedClassifierName>executable</shadedClassifierName>
94                                                 </configuration>
95                                         </execution>
96                                 </executions>
97                         </plugin>
98                 </plugins>
99         </build>
100
101 </project>