BUG-4692: Migrate TCP-MD5 support in pcc-mock package to netty's native-epoll
[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>${project.groupId}</groupId>
45       <artifactId>pcep-ietf-stateful07</artifactId>
46     </dependency>
47
48     <dependency>
49       <groupId>io.netty</groupId>
50       <artifactId>netty-common</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>io.netty</groupId>
54       <artifactId>netty-buffer</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>io.netty</groupId>
58       <artifactId>netty-transport</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>com.google.guava</groupId>
62       <artifactId>guava</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.slf4j</groupId>
66       <artifactId>slf4j-api</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>io.netty</groupId>
70       <artifactId>netty-codec</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>io.netty</groupId>
74       <artifactId>netty-buffer</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>io.netty</groupId>
78       <artifactId>netty-common</artifactId>
79      </dependency>
80      <dependency>
81       <groupId>io.netty</groupId>
82       <artifactId>netty-transport</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>io.netty</groupId>
86       <artifactId>netty-transport-native-epoll</artifactId>
87       <classifier>${os.detected.classifier}</classifier>
88     </dependency>
89     <dependency>
90       <groupId>io.netty</groupId>
91       <artifactId>netty-handler</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>ch.qos.logback</groupId>
95       <artifactId>logback-classic</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.mdsal.model</groupId>
99       <artifactId>ietf-inet-types</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>com.google.code.findbugs</groupId>
103       <artifactId>jsr305</artifactId>
104     </dependency>
105
106     <!-- Testing dependencies -->
107     <dependency>
108       <groupId>junit</groupId>
109       <artifactId>junit</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.mockito</groupId>
113       <artifactId>mockito-core</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.controller</groupId>
117       <artifactId>config-manager</artifactId>
118       <type>test-jar</type>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>config-manager</artifactId>
123       <scope>test</scope>
124     </dependency>
125   </dependencies>
126
127   <build>
128     <plugins>
129       <plugin>
130         <groupId>org.apache.maven.plugins</groupId>
131         <artifactId>maven-jar-plugin</artifactId>
132         <configuration>
133           <archive>
134             <manifest>
135               <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
136             </manifest>
137           </archive>
138         </configuration>
139       </plugin>
140       <plugin>
141         <groupId>org.apache.maven.plugins</groupId>
142         <artifactId>maven-shade-plugin</artifactId>
143         <configuration>
144         </configuration>
145         <executions>
146           <execution>
147             <phase>package</phase>
148             <goals>
149               <goal>shade</goal>
150             </goals>
151             <configuration>
152               <transformers>
153                 <transformer
154                   implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
155                   <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
156                 </transformer>
157               </transformers>
158               <shadedArtifactAttached>true</shadedArtifactAttached>
159               <shadedClassifierName>executable</shadedClassifierName>
160             </configuration>
161           </execution>
162         </executions>
163       </plugin>
164     </plugins>
165   </build>
166
167   <!--
168       Maven Site Configuration
169
170       The following configuration is necessary for maven-site-plugin to
171       correctly identify the correct deployment path for OpenDaylight Maven
172       sites.
173   -->
174   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
175
176   <distributionManagement>
177     <site>
178       <id>opendaylight-site</id>
179       <url>${nexus.site.url}/${project.artifactId}/</url>
180     </site>
181   </distributionManagement>
182 </project>