Add scm tag in preparation for release
[bgpcep.git] / pcep / testtool / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7     <scm>
8         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
9         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
10         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
11         <tag>HEAD</tag>
12     </scm>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>pcep-parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17     </parent>
18
19     <artifactId>pcep-testtool</artifactId>
20     <description>PCEP Interop Testing Tool</description>
21     <packaging>jar</packaging>
22     <name>${project.artifactId}</name>
23     <prerequisites>
24         <maven>3.0.4</maven>
25     </prerequisites>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>pcep-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>pcep-impl</artifactId>
35         </dependency>
36
37         <dependency>
38             <groupId>${project.groupId}</groupId>
39             <artifactId>concepts</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>${project.groupId}</groupId>
43             <artifactId>framework</artifactId>
44         </dependency>
45
46         <dependency>
47             <groupId>io.netty</groupId>
48             <artifactId>netty-common</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>io.netty</groupId>
52             <artifactId>netty-transport</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>com.google.guava</groupId>
56             <artifactId>guava</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.slf4j</groupId>
60             <artifactId>slf4j-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>ch.qos.logback</groupId>
64             <artifactId>logback-classic</artifactId>
65             <version>${logback.version}</version>
66             <scope>runtime</scope>
67         </dependency>
68
69         <!-- Testing dependencies -->
70         <dependency>
71             <groupId>junit</groupId>
72             <artifactId>junit</artifactId>
73         </dependency>
74     </dependencies>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-jar-plugin</artifactId>
81                 <configuration>
82                     <archive>
83                         <manifest>
84                             <mainClass>org.opendaylight.protocol.pcep.testtool.Main</mainClass>
85                         </manifest>
86                     </archive>
87                 </configuration>
88             </plugin>
89             <plugin>
90                 <groupId>org.apache.maven.plugins</groupId>
91                 <artifactId>maven-shade-plugin</artifactId>
92                 <version>${maven.shade.version}</version>
93                 <configuration>
94                 </configuration>
95                 <executions>
96                     <execution>
97                         <phase>package</phase>
98                         <goals>
99                             <goal>shade</goal>
100                         </goals>
101                         <configuration>
102                             <transformers>
103                                 <transformer
104                                     implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
105                                     <mainClass>org.opendaylight.protocol.pcep.testtool.Main</mainClass>
106                                 </transformer>
107                             </transformers>
108                             <shadedArtifactAttached>true</shadedArtifactAttached>
109                             <shadedClassifierName>executable</shadedClassifierName>
110                         </configuration>
111                     </execution>
112                 </executions>
113             </plugin>
114         </plugins>
115     </build>
116
117 </project>