Derive aggregators from odlparent-lite
[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>1.8.0-SNAPSHOT</version>
17         <relativePath/>
18     </parent>
19
20     <groupId>org.opendaylight.bgpcep</groupId>
21     <artifactId>pcep-pcc-mock</artifactId>
22     <version>0.7.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.7.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         <dependency>
109             <groupId>com.google.code.findbugs</groupId>
110             <artifactId>jsr305</artifactId>
111         </dependency>
112
113         <!-- Testing dependencies -->
114         <dependency>
115             <groupId>junit</groupId>
116             <artifactId>junit</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.mockito</groupId>
120             <artifactId>mockito-core</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.controller</groupId>
124             <artifactId>config-manager</artifactId>
125             <type>test-jar</type>
126         </dependency>
127         <dependency>
128             <groupId>org.opendaylight.controller</groupId>
129             <artifactId>config-manager</artifactId>
130             <scope>test</scope>
131         </dependency>
132     </dependencies>
133
134     <build>
135         <plugins>
136             <plugin>
137                 <groupId>org.apache.maven.plugins</groupId>
138                 <artifactId>maven-jar-plugin</artifactId>
139                 <configuration>
140                     <archive>
141                         <manifest>
142                             <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
143                         </manifest>
144                     </archive>
145                 </configuration>
146             </plugin>
147             <plugin>
148                 <groupId>org.apache.maven.plugins</groupId>
149                 <artifactId>maven-shade-plugin</artifactId>
150                 <configuration>
151                 </configuration>
152                 <executions>
153                     <execution>
154                         <phase>package</phase>
155                         <goals>
156                             <goal>shade</goal>
157                         </goals>
158                         <configuration>
159                             <transformers>
160                                 <transformer
161                                     implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
162                                     <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
163                                 </transformer>
164                             </transformers>
165                             <shadedArtifactAttached>true</shadedArtifactAttached>
166                             <shadedClassifierName>executable</shadedClassifierName>
167                         </configuration>
168                     </execution>
169                 </executions>
170             </plugin>
171         </plugins>
172     </build>
173
174     <scm>
175         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
176         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
177         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
178         <tag>HEAD</tag>
179     </scm>
180
181     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
182     <distributionManagement>
183         <site>
184             <id>opendaylight-site</id>
185             <url>${nexus.site.url}/${project.artifactId}/</url>
186         </site>
187     </distributionManagement>
188 </project>