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