Add scm tag in preparation for release
[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     <modelVersion>4.0.0</modelVersion>
7     <scm>
8         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
9         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
10         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
11         <tag>HEAD</tag>
12     </scm>
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>commons.parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17         <relativePath>../commons/parent</relativePath>
18     </parent>
19
20     <artifactId>util</artifactId>
21     <description>Protocol utilities</description>
22     <packaging>bundle</packaging>
23     <name>${project.artifactId}</name>
24     <prerequisites>
25         <maven>3.0.4</maven>
26     </prerequisites>
27
28     <dependencies>
29         <dependency>
30             <groupId>com.google.guava</groupId>
31             <artifactId>guava</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>commons-codec</groupId>
35             <artifactId>commons-codec</artifactId>
36             <version>${commonscodec.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.slf4j</groupId>
40             <artifactId>slf4j-api</artifactId>
41         </dependency>
42
43         <!-- Testing dependencies -->
44         <dependency>
45             <groupId>junit</groupId>
46             <artifactId>junit</artifactId>
47         </dependency>
48     </dependencies>
49
50     <build>
51         <plugins>
52             <plugin>
53                 <groupId>org.apache.felix</groupId>
54                 <artifactId>maven-bundle-plugin</artifactId>
55                 <extensions>true</extensions>
56                 <configuration>
57                     <instructions>
58                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
59                     </instructions>
60                 </configuration>
61             </plugin>
62             <plugin>
63                 <groupId>org.apache.maven.plugins</groupId>
64                 <artifactId>maven-jar-plugin</artifactId>
65                 <executions>
66                     <execution>
67                         <phase>package</phase>
68                         <goals>
69                             <goal>test-jar</goal>
70                         </goals>
71                     </execution>
72                 </executions>
73             </plugin>
74         </plugins>
75     </build>
76 </project>