Merge "Do not hard-code the artifact version"
[bgpcep.git] / util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12
13     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14
15     <modelVersion>4.0.0</modelVersion>
16     <scm>
17         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
18         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
19         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
20         <tag>HEAD</tag>
21     </scm>
22     <parent>
23         <groupId>org.opendaylight.bgpcep</groupId>
24         <artifactId>commons.parent</artifactId>
25         <version>0.3.0-SNAPSHOT</version>
26         <relativePath>../commons/parent</relativePath>
27     </parent>
28
29     <artifactId>util</artifactId>
30     <description>Protocol utilities</description>
31     <packaging>bundle</packaging>
32     <name>${project.artifactId}</name>
33     <prerequisites>
34         <maven>3.0.4</maven>
35     </prerequisites>
36
37     <dependencies>
38         <dependency>
39             <groupId>com.google.guava</groupId>
40             <artifactId>guava</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>commons-codec</groupId>
44             <artifactId>commons-codec</artifactId>
45             <version>${commonscodec.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.slf4j</groupId>
49             <artifactId>slf4j-api</artifactId>
50         </dependency>
51
52         <!-- Testing dependencies -->
53         <dependency>
54             <groupId>junit</groupId>
55             <artifactId>junit</artifactId>
56         </dependency>
57     </dependencies>
58
59     <build>
60         <plugins>
61             <plugin>
62                 <groupId>org.apache.felix</groupId>
63                 <artifactId>maven-bundle-plugin</artifactId>
64                 <extensions>true</extensions>
65                 <configuration>
66                     <instructions>
67                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
68                     </instructions>
69                 </configuration>
70             </plugin>
71             <plugin>
72                 <groupId>org.apache.maven.plugins</groupId>
73                 <artifactId>maven-jar-plugin</artifactId>
74                 <executions>
75                     <execution>
76                         <phase>package</phase>
77                         <goals>
78                             <goal>test-jar</goal>
79                         </goals>
80                     </execution>
81                 </executions>
82             </plugin>
83         </plugins>
84     </build>
85 </project>