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