Bump versions 0.17.2-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.17.2-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         <dependency>
54             <groupId>org.kohsuke.metainf-services</groupId>
55             <artifactId>metainf-services</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>${project.groupId}</groupId>
60             <artifactId>pcep-ietf-stateful</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>testtool-util</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.google.guava</groupId>
68             <artifactId>guava</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.slf4j</groupId>
72             <artifactId>slf4j-api</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>io.netty</groupId>
76             <artifactId>netty-buffer</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>io.netty</groupId>
80             <artifactId>netty-common</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>io.netty</groupId>
84             <artifactId>netty-transport</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>io.netty</groupId>
88             <artifactId>netty-transport-native-epoll</artifactId>
89             <classifier>linux-x86_64</classifier>
90         </dependency>
91         <dependency>
92             <groupId>ch.qos.logback</groupId>
93             <artifactId>logback-classic</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.yangtools</groupId>
97             <artifactId>concepts</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.yangtools</groupId>
101             <artifactId>yang-common</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
105             <artifactId>rfc6991-ietf-inet-types</artifactId>
106         </dependency>
107     </dependencies>
108
109     <build>
110         <plugins>
111             <plugin>
112                 <groupId>org.apache.maven.plugins</groupId>
113                 <artifactId>maven-jar-plugin</artifactId>
114                 <configuration>
115                     <archive>
116                         <manifest>
117                             <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
118                         </manifest>
119                     </archive>
120                 </configuration>
121             </plugin>
122             <plugin>
123                 <groupId>org.apache.maven.plugins</groupId>
124                 <artifactId>maven-shade-plugin</artifactId>
125                 <configuration>
126                 </configuration>
127                 <executions>
128                     <execution>
129                         <phase>package</phase>
130                         <goals>
131                             <goal>shade</goal>
132                         </goals>
133                         <configuration>
134                             <filters>
135                                 <filter>
136                                     <artifact>*:*</artifact>
137                                     <excludes>
138                                         <exclude>META-INF/*.SF</exclude>
139                                         <exclude>META-INF/*.DSA</exclude>
140                                         <exclude>META-INF/*.RSA</exclude>
141                                     </excludes>
142                                 </filter>
143                             </filters>
144                             <transformers>
145                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
146                                     <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
147                                 </transformer>
148                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
149                             </transformers>
150                             <shadedArtifactAttached>true</shadedArtifactAttached>
151                             <shadedClassifierName>executable</shadedClassifierName>
152                         </configuration>
153                     </execution>
154                 </executions>
155             </plugin>
156         </plugins>
157     </build>
158
159     <scm>
160         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
161         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
162         <url>https://wiki.opendaylight.org/display/ODL/BGPCEP</url>
163         <tag>HEAD</tag>
164     </scm>
165 </project>