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