d44cec91c03d3d17bdf07fdfe9b39612feda09a9
[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>testtool-parent</artifactId>
17         <version>0.10.3-SNAPSHOT</version>
18         <relativePath>../testtool-parent</relativePath>
19     </parent>
20
21     <artifactId>testtool-util</artifactId>
22     <packaging>bundle</packaging>
23     <dependencies>
24         <dependency>
25             <groupId>com.google.guava</groupId>
26             <artifactId>guava</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.slf4j</groupId>
30             <artifactId>slf4j-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>ch.qos.logback</groupId>
34             <artifactId>logback-classic</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.controller</groupId>
38             <artifactId>sal-binding-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.controller</groupId>
42             <artifactId>sal-common-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>io.netty</groupId>
46             <artifactId>netty-common</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>yang-binding</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>ch.qos.logback</groupId>
54             <artifactId>logback-core</artifactId>
55         </dependency>
56         <!-- Testing dependencies -->
57         <dependency>
58             <groupId>org.opendaylight.mdsal.model</groupId>
59             <artifactId>ietf-topology</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.mockito</groupId>
64             <artifactId>mockito-core</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>io.netty</groupId>
68             <artifactId>netty-transport</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         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.controller</groupId>
78             <artifactId>sal-binding-broker-impl</artifactId>
79             <scope>test</scope>
80             <type>test-jar</type>
81         </dependency>
82     </dependencies>
83
84     <build>
85         <plugins>
86             <plugin>
87                 <groupId>org.apache.felix</groupId>
88                 <artifactId>maven-bundle-plugin</artifactId>
89                 <extensions>true</extensions>
90                 <configuration>
91                     <instructions>
92                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
93                     </instructions>
94                 </configuration>
95             </plugin>
96             <plugin>
97                 <groupId>org.apache.maven.plugins</groupId>
98                 <artifactId>maven-jar-plugin</artifactId>
99                 <executions>
100                     <execution>
101                         <phase>package</phase>
102                         <goals>
103                             <goal>test-jar</goal>
104                         </goals>
105                     </execution>
106                 </executions>
107             </plugin>
108         </plugins>
109     </build>
110 </project>