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