Release Carbon
[bgpcep.git] / testtool-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4   ~
5   ~ This program and the accompanying materials are made available under the
6   ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
7   ~ and is available at http://www.eclipse.org/legal/epl-v10.html
8   -->
9
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          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>bgpcep-parent</artifactId>
17         <version>0.7.4-Carbon</version>
18         <relativePath>../parent</relativePath>
19     </parent>
20
21     <artifactId>testtool-util</artifactId>
22     <packaging>bundle</packaging>
23     <prerequisites>
24         <maven>3.0.4</maven>
25     </prerequisites>
26     <dependencies>
27         <dependency>
28             <groupId>com.google.guava</groupId>
29             <artifactId>guava</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.slf4j</groupId>
33             <artifactId>slf4j-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>ch.qos.logback</groupId>
37             <artifactId>logback-classic</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller</groupId>
41             <artifactId>sal-binding-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>io.netty</groupId>
45             <artifactId>netty-common</artifactId>
46         </dependency>
47         <!-- Testing dependencies -->
48         <dependency>
49             <groupId>org.opendaylight.mdsal.model</groupId>
50             <artifactId>ietf-topology</artifactId>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>junit</groupId>
55             <artifactId>junit</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.mockito</groupId>
59             <artifactId>mockito-core</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>io.netty</groupId>
63             <artifactId>netty-transport</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.controller</groupId>
68             <artifactId>sal-binding-broker-impl</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.controller</groupId>
73             <artifactId>sal-binding-broker-impl</artifactId>
74             <scope>test</scope>
75             <type>test-jar</type>
76         </dependency>
77     </dependencies>
78
79     <build>
80         <plugins>
81             <plugin>
82                 <groupId>org.apache.felix</groupId>
83                 <artifactId>maven-bundle-plugin</artifactId>
84                 <extensions>true</extensions>
85                 <configuration>
86                     <instructions>
87                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
88                     </instructions>
89                 </configuration>
90             </plugin>
91             <plugin>
92                 <groupId>org.apache.maven.plugins</groupId>
93                 <artifactId>maven-jar-plugin</artifactId>
94                 <executions>
95                     <execution>
96                         <phase>package</phase>
97                         <goals>
98                             <goal>test-jar</goal>
99                         </goals>
100                     </execution>
101                 </executions>
102             </plugin>
103             <plugin>
104                 <groupId>org.apache.maven.plugins</groupId>
105                 <artifactId>maven-checkstyle-plugin</artifactId>
106                 <configuration>
107                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
108                 </configuration>
109             </plugin>
110             <plugin>
111                 <groupId>org.codehaus.mojo</groupId>
112                 <artifactId>findbugs-maven-plugin</artifactId>
113                 <configuration>
114                     <failOnError>true</failOnError>
115                 </configuration>
116             </plugin>
117         </plugins>
118     </build>
119
120     <!--
121         Maven Site Configuration
122
123         The following configuration is necessary for maven-site-plugin to
124         correctly identify the correct deployment path for OpenDaylight Maven
125         sites.
126     -->
127     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
128
129     <distributionManagement>
130         <site>
131             <id>opendaylight-site</id>
132             <url>${nexus.site.url}/${project.artifactId}/</url>
133         </site>
134     </distributionManagement>
135 </project>