BUG-110 : integration test : pcep message -> topology provider -> md sal
[bgpcep.git] / util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6         <parent>
7                 <groupId>org.opendaylight.bgpcep</groupId>
8                 <artifactId>protocol-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>util</artifactId>
14         <description>Protocol utilities</description>
15         <packaging>bundle</packaging>
16         <name>${project.artifactId}</name>
17         <prerequisites>
18                 <maven>3.0.4</maven>
19         </prerequisites>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>com.google.guava</groupId>
24                         <artifactId>guava</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>commons-codec</groupId>
28                         <artifactId>commons-codec</artifactId>
29                         <version>${commonscodec.version}</version>
30         </dependency>
31         <dependency>
32             <groupId>org.slf4j</groupId>
33             <artifactId>slf4j-api</artifactId>
34         </dependency>
35
36         <!-- Testing dependencies -->
37         <dependency>
38             <groupId>junit</groupId>
39             <artifactId>junit</artifactId>
40         </dependency>
41     </dependencies>
42
43         <build>
44                 <plugins>
45                         <plugin>
46                                 <groupId>org.apache.felix</groupId>
47                                 <artifactId>maven-bundle-plugin</artifactId>
48                                 <version>${maven.bundle.version}</version>
49                                 <extensions>true</extensions>
50                                 <configuration>
51                                         <instructions>
52                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
53                                                 <Export-Package>
54                                                         org.opendaylight.protocol.util
55                                                 </Export-Package>
56                                         </instructions>
57                                 </configuration>
58                         </plugin>
59                         <plugin>
60                                 <groupId>org.apache.maven.plugins</groupId>
61                                 <artifactId>maven-jar-plugin</artifactId>
62                                 <version>2.4</version>
63                                 <executions>
64                                         <execution>
65                                                 <phase>package</phase>
66                                                 <goals>
67                                                         <goal>test-jar</goal>
68                                                 </goals>
69                                         </execution>
70                                 </executions>
71                         </plugin>
72                 </plugins>
73         </build>
74 </project>