Release Neon
[bgpcep.git] / pcep / pcc-mock / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 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"
11          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.bgpcep</groupId>
16         <artifactId>testtool-parent</artifactId>
17         <version>0.11.3</version>
18         <relativePath>../../testtool-parent</relativePath>
19     </parent>
20
21     <artifactId>pcep-pcc-mock</artifactId>
22     <version>0.11.3</version>
23     <packaging>jar</packaging>
24
25     <dependencies>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>util</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>concepts</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>${project.groupId}</groupId>
36             <artifactId>pcep-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>pcep-spi</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>pcep-impl</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>pcep-base-parser</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>rsvp-api</artifactId>
53         </dependency>
54
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>pcep-ietf-stateful07</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>testtool-util</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.google.guava</groupId>
65             <artifactId>guava</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.slf4j</groupId>
69             <artifactId>slf4j-api</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>io.netty</groupId>
73             <artifactId>netty-buffer</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>io.netty</groupId>
77             <artifactId>netty-common</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>io.netty</groupId>
81             <artifactId>netty-transport</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>io.netty</groupId>
85             <artifactId>netty-transport-native-epoll</artifactId>
86             <classifier>linux-x86_64</classifier>
87         </dependency>
88         <dependency>
89             <groupId>ch.qos.logback</groupId>
90             <artifactId>logback-classic</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.yangtools</groupId>
94             <artifactId>concepts</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
98             <artifactId>rfc6991-ietf-inet-types</artifactId>
99         </dependency>
100     </dependencies>
101
102     <build>
103         <plugins>
104             <plugin>
105                 <groupId>org.apache.maven.plugins</groupId>
106                 <artifactId>maven-jar-plugin</artifactId>
107                 <configuration>
108                     <archive>
109                         <manifest>
110                             <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
111                         </manifest>
112                     </archive>
113                 </configuration>
114             </plugin>
115             <plugin>
116                 <groupId>org.apache.maven.plugins</groupId>
117                 <artifactId>maven-shade-plugin</artifactId>
118                 <configuration>
119                 </configuration>
120                 <executions>
121                     <execution>
122                         <phase>package</phase>
123                         <goals>
124                             <goal>shade</goal>
125                         </goals>
126                         <configuration>
127                             <filters>
128                                 <filter>
129                                     <artifact>*:*</artifact>
130                                     <excludes>
131                                         <exclude>META-INF/*.SF</exclude>
132                                         <exclude>META-INF/*.DSA</exclude>
133                                         <exclude>META-INF/*.RSA</exclude>
134                                     </excludes>
135                                 </filter>
136                             </filters>
137                             <transformers>
138                                 <transformer
139                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
140                                     <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
141                                 </transformer>
142                             </transformers>
143                             <shadedArtifactAttached>true</shadedArtifactAttached>
144                             <shadedClassifierName>executable</shadedClassifierName>
145                         </configuration>
146                     </execution>
147                 </executions>
148             </plugin>
149         </plugins>
150     </build>
151
152     <scm>
153         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
154         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
155         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
156         <tag>HEAD</tag>
157     </scm>
158 </project>