Bump versions by x.y.(z+1)
[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.13.0-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-dom-adapter</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             <type>test-jar</type>
77         </dependency>
78     </dependencies>
79
80     <build>
81         <plugins>
82             <plugin>
83                 <groupId>org.apache.felix</groupId>
84                 <artifactId>maven-bundle-plugin</artifactId>
85                 <extensions>true</extensions>
86                 <configuration>
87                     <instructions>
88                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
89                     </instructions>
90                 </configuration>
91             </plugin>
92             <plugin>
93                 <groupId>org.apache.maven.plugins</groupId>
94                 <artifactId>maven-jar-plugin</artifactId>
95                 <executions>
96                     <execution>
97                         <phase>package</phase>
98                         <goals>
99                             <goal>test-jar</goal>
100                         </goals>
101                     </execution>
102                 </executions>
103             </plugin>
104         </plugins>
105     </build>
106 </project>