Bump versions by 0.1.0 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
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13   <modelVersion>4.0.0</modelVersion>
14   <parent>
15     <groupId>org.opendaylight.bgpcep</groupId>
16     <artifactId>pcep-parent</artifactId>
17     <version>0.6.0-SNAPSHOT</version>
18   </parent>
19   <artifactId>pcep-pcc-mock</artifactId>
20
21   <dependencies>
22     <dependency>
23       <groupId>${project.groupId}</groupId>
24       <artifactId>util</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>pcep-api</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>pcep-spi</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>${project.groupId}</groupId>
36       <artifactId>pcep-impl</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>rsvp-api</artifactId>
41     </dependency>
42
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>protocol-framework</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>pcep-ietf-stateful07</artifactId>
50     </dependency>
51
52     <dependency>
53       <groupId>io.netty</groupId>
54       <artifactId>netty-common</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>io.netty</groupId>
58       <artifactId>netty-buffer</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>io.netty</groupId>
62       <artifactId>netty-transport</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>com.google.guava</groupId>
66       <artifactId>guava</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.slf4j</groupId>
70       <artifactId>slf4j-api</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>ch.qos.logback</groupId>
74       <artifactId>logback-classic</artifactId>
75     </dependency>
76     <dependency>
77        <groupId>org.opendaylight.mdsal.model</groupId>
78        <artifactId>ietf-inet-types</artifactId>
79     </dependency>
80     <dependency>
81         <groupId>org.opendaylight.tcpmd5</groupId>
82         <artifactId>tcpmd5-jni</artifactId>
83     </dependency>
84     <dependency>
85         <groupId>org.opendaylight.tcpmd5</groupId>
86         <artifactId>tcpmd5-netty</artifactId>
87     </dependency>
88     <dependency>
89         <groupId>org.opendaylight.tcpmd5</groupId>
90         <artifactId>tcpmd5-api</artifactId>
91     </dependency>
92     <dependency>
93         <groupId>com.google.code.findbugs</groupId>
94         <artifactId>jsr305</artifactId>
95     </dependency>
96
97     <!-- Testing dependencies -->
98     <dependency>
99       <groupId>junit</groupId>
100       <artifactId>junit</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.mockito</groupId>
104       <artifactId>mockito-core</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.controller</groupId>
108       <artifactId>config-manager</artifactId>
109       <type>test-jar</type>
110     </dependency>
111     <dependency>
112       <groupId>org.opendaylight.controller</groupId>
113       <artifactId>config-manager</artifactId>
114       <scope>test</scope>
115     </dependency>
116   </dependencies>
117
118   <build>
119     <plugins>
120       <plugin>
121         <groupId>org.apache.maven.plugins</groupId>
122         <artifactId>maven-jar-plugin</artifactId>
123         <configuration>
124           <archive>
125             <manifest>
126               <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
127             </manifest>
128           </archive>
129         </configuration>
130       </plugin>
131       <plugin>
132         <groupId>org.apache.maven.plugins</groupId>
133         <artifactId>maven-shade-plugin</artifactId>
134         <configuration>
135         </configuration>
136         <executions>
137           <execution>
138             <phase>package</phase>
139             <goals>
140               <goal>shade</goal>
141             </goals>
142             <configuration>
143               <transformers>
144                 <transformer
145                   implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
146                   <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
147                 </transformer>
148               </transformers>
149               <shadedArtifactAttached>true</shadedArtifactAttached>
150               <shadedClassifierName>executable</shadedClassifierName>
151             </configuration>
152           </execution>
153         </executions>
154       </plugin>
155     </plugins>
156   </build>
157 </project>