Bump versions by x.(y+1).z for next dev cycle
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <modelVersion>4.0.0</modelVersion>
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>odlparent</artifactId>
16         <version>2.0.4</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.bgpcep</groupId>
21     <artifactId>pcep-pcc-mock</artifactId>
22     <version>0.9.0-SNAPSHOT</version>
23     <packaging>jar</packaging>
24
25     <dependencyManagement>
26         <dependencies>
27             <dependency>
28                 <groupId>org.opendaylight.bgpcep</groupId>
29                 <artifactId>bgpcep-parent</artifactId>
30                 <version>0.9.0-SNAPSHOT</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>${project.groupId}</groupId>
40             <artifactId>util</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>pcep-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>${project.groupId}</groupId>
48             <artifactId>pcep-spi</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>pcep-impl</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>rsvp-api</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>${project.groupId}</groupId>
61             <artifactId>pcep-ietf-stateful07</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>${project.groupId}</groupId>
65             <artifactId>testtool-util</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>com.google.guava</groupId>
69             <artifactId>guava</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>org.slf4j</groupId>
73             <artifactId>slf4j-api</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>io.netty</groupId>
77             <artifactId>netty-buffer</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>io.netty</groupId>
81             <artifactId>netty-codec</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>io.netty</groupId>
85             <artifactId>netty-common</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>io.netty</groupId>
89             <artifactId>netty-transport</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>io.netty</groupId>
93             <artifactId>netty-transport-native-epoll</artifactId>
94             <classifier>linux-x86_64</classifier>
95         </dependency>
96         <dependency>
97             <groupId>io.netty</groupId>
98             <artifactId>netty-handler</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>ch.qos.logback</groupId>
102             <artifactId>logback-classic</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.mdsal.model</groupId>
106             <artifactId>ietf-inet-types-2013-07-15</artifactId>
107         </dependency>
108
109         <!-- Testing dependencies -->
110         <dependency>
111             <groupId>junit</groupId>
112             <artifactId>junit</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.mockito</groupId>
116             <artifactId>mockito-core</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.controller</groupId>
120             <artifactId>config-manager</artifactId>
121             <type>test-jar</type>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.controller</groupId>
125             <artifactId>config-manager</artifactId>
126             <scope>test</scope>
127         </dependency>
128     </dependencies>
129
130     <build>
131         <plugins>
132             <plugin>
133                 <groupId>org.apache.maven.plugins</groupId>
134                 <artifactId>maven-jar-plugin</artifactId>
135                 <configuration>
136                     <archive>
137                         <manifest>
138                             <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
139                         </manifest>
140                     </archive>
141                 </configuration>
142             </plugin>
143             <plugin>
144                 <groupId>org.apache.maven.plugins</groupId>
145                 <artifactId>maven-shade-plugin</artifactId>
146                 <configuration>
147                 </configuration>
148                 <executions>
149                     <execution>
150                         <phase>package</phase>
151                         <goals>
152                             <goal>shade</goal>
153                         </goals>
154                         <configuration>
155                             <filters>
156                                 <filter>
157                                     <artifact>*:*</artifact>
158                                     <excludes>
159                                         <exclude>META-INF/*.SF</exclude>
160                                         <exclude>META-INF/*.DSA</exclude>
161                                         <exclude>META-INF/*.RSA</exclude>
162                                     </excludes>
163                                 </filter>
164                             </filters>
165                             <transformers>
166                                 <transformer
167                                     implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
168                                     <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
169                                 </transformer>
170                             </transformers>
171                             <shadedArtifactAttached>true</shadedArtifactAttached>
172                             <shadedClassifierName>executable</shadedClassifierName>
173                         </configuration>
174                     </execution>
175                 </executions>
176             </plugin>
177         </plugins>
178     </build>
179
180     <scm>
181         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
182         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
183         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
184         <tag>HEAD</tag>
185     </scm>
186
187     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
188     <distributionManagement>
189         <site>
190             <id>opendaylight-site</id>
191             <url>${nexus.site.url}/${project.artifactId}/</url>
192         </site>
193     </distributionManagement>
194 </project>