Upgrade ietf-{inet,yang}-types to 2013-07-15
[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     <dependency>
48         <groupId>${project.groupId}</groupId>
49         <artifactId>testtool-util</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>io.netty</groupId>
53       <artifactId>netty-common</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>io.netty</groupId>
57       <artifactId>netty-buffer</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>io.netty</groupId>
61       <artifactId>netty-transport</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>com.google.guava</groupId>
65       <artifactId>guava</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.slf4j</groupId>
69       <artifactId>slf4j-api</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>io.netty</groupId>
73       <artifactId>netty-codec</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-common</artifactId>
82      </dependency>
83      <dependency>
84       <groupId>io.netty</groupId>
85       <artifactId>netty-transport</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>io.netty</groupId>
89       <artifactId>netty-transport-native-epoll</artifactId>
90       <classifier>${os.detected.classifier}</classifier>
91     </dependency>
92     <dependency>
93       <groupId>io.netty</groupId>
94       <artifactId>netty-handler</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>ch.qos.logback</groupId>
98       <artifactId>logback-classic</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.mdsal.model</groupId>
102       <artifactId>ietf-inet-types-2013-07-15</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>com.google.code.findbugs</groupId>
106       <artifactId>jsr305</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               <transformers>
156                 <transformer
157                   implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
158                   <mainClass>org.opendaylight.protocol.pcep.pcc.mock.Main</mainClass>
159                 </transformer>
160               </transformers>
161               <shadedArtifactAttached>true</shadedArtifactAttached>
162               <shadedClassifierName>executable</shadedClassifierName>
163             </configuration>
164           </execution>
165         </executions>
166       </plugin>
167     </plugins>
168   </build>
169
170   <!--
171       Maven Site Configuration
172
173       The following configuration is necessary for maven-site-plugin to
174       correctly identify the correct deployment path for OpenDaylight Maven
175       sites.
176   -->
177   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
178
179   <distributionManagement>
180     <site>
181       <id>opendaylight-site</id>
182       <url>${nexus.site.url}/${project.artifactId}/</url>
183     </site>
184   </distributionManagement>
185 </project>