Added copyright header to pom files.
[bgpcep.git] / pcep / 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
13     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14
15     <modelVersion>4.0.0</modelVersion>
16     <scm>
17         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
18         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
19         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
20         <tag>HEAD</tag>
21     </scm>
22     <parent>
23         <groupId>org.opendaylight.bgpcep</groupId>
24         <artifactId>pcep-parent</artifactId>
25         <version>0.3.0-SNAPSHOT</version>
26     </parent>
27
28     <artifactId>pcep-testtool</artifactId>
29     <description>PCEP Interop Testing Tool</description>
30     <packaging>jar</packaging>
31     <name>${project.artifactId}</name>
32     <prerequisites>
33         <maven>3.0.4</maven>
34     </prerequisites>
35
36     <dependencies>
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>pcep-api</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>pcep-impl</artifactId>
44         </dependency>
45
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>concepts</artifactId>
49         </dependency>
50
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>protocol-framework</artifactId>
54         </dependency>
55
56         <dependency>
57             <groupId>io.netty</groupId>
58             <artifactId>netty-common</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>io.netty</groupId>
62             <artifactId>netty-transport</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>com.google.guava</groupId>
66             <artifactId>guava</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.slf4j</groupId>
70             <artifactId>slf4j-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>ch.qos.logback</groupId>
74             <artifactId>logback-classic</artifactId>
75             <scope>runtime</scope>
76         </dependency>
77
78         <!-- Testing dependencies -->
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-jar-plugin</artifactId>
90                 <configuration>
91                     <archive>
92                         <manifest>
93                             <mainClass>org.opendaylight.protocol.pcep.testtool.Main</mainClass>
94                         </manifest>
95                     </archive>
96                 </configuration>
97             </plugin>
98             <plugin>
99                 <groupId>org.apache.maven.plugins</groupId>
100                 <artifactId>maven-shade-plugin</artifactId>
101                 <version>${maven.shade.version}</version>
102                 <configuration>
103                 </configuration>
104                 <executions>
105                     <execution>
106                         <phase>package</phase>
107                         <goals>
108                             <goal>shade</goal>
109                         </goals>
110                         <configuration>
111                             <transformers>
112                                 <transformer
113                                     implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
114                                     <mainClass>org.opendaylight.protocol.pcep.testtool.Main</mainClass>
115                                 </transformer>
116                             </transformers>
117                             <shadedArtifactAttached>true</shadedArtifactAttached>
118                             <shadedClassifierName>executable</shadedClassifierName>
119                         </configuration>
120                     </execution>
121                 </executions>
122             </plugin>
123         </plugins>
124     </build>
125
126 </project>