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