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