Bump versions to 0.20.5-SNAPSHOT
[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.20.5-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.mdsal</groupId>
38             <artifactId>mdsal-binding-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.mdsal</groupId>
42             <artifactId>mdsal-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>io.netty</groupId>
64             <artifactId>netty-transport</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.mdsal</groupId>
69             <artifactId>mdsal-binding-test-utils</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.mdsal</groupId>
74             <artifactId>mdsal-binding-dom-adapter</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.mdsal</groupId>
79             <artifactId>mdsal-binding-dom-adapter</artifactId>
80             <scope>test</scope>
81             <type>test-jar</type>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.felix</groupId>
89                 <artifactId>maven-bundle-plugin</artifactId>
90                 <extensions>true</extensions>
91                 <configuration>
92                     <instructions>
93                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
94                     </instructions>
95                 </configuration>
96             </plugin>
97             <plugin>
98                 <artifactId>maven-jar-plugin</artifactId>
99                 <executions>
100                     <execution>
101                         <goals>
102                             <goal>test-jar</goal>
103                         </goals>
104                     </execution>
105                 </executions>
106             </plugin>
107             <plugin>
108                 <artifactId>maven-source-plugin</artifactId>
109                 <executions>
110                     <execution>
111                         <goals>
112                             <goal>test-jar-no-fork</goal>
113                         </goals>
114                     </execution>
115                 </executions>
116             </plugin>
117         </plugins>
118     </build>
119 </project>