Add scm tag in preparation for release
[bgpcep.git] / bgp / parser-impl / 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>bgp-parent</artifactId>
16         <version>0.3.0-SNAPSHOT</version>
17     </parent>
18
19     <artifactId>bgp-parser-impl</artifactId>
20     <description>BGP Parser Implementation Updated to draft-02</description>
21     <packaging>bundle</packaging>
22     <name>${project.artifactId}</name>
23     <prerequisites>
24         <maven>3.0.4</maven>
25     </prerequisites>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>bgp-concepts</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>${project.groupId}</groupId>
34             <artifactId>bgp-parser-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>${project.groupId}</groupId>
38             <artifactId>bgp-parser-spi</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-util</artifactId>
43         </dependency>
44
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>concepts</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>framework</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>util</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>org.slf4j</groupId>
60             <artifactId>slf4j-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>com.google.guava</groupId>
64             <artifactId>guava</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.google.code.findbugs</groupId>
68             <artifactId>jsr305</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.yangtools.model</groupId>
72             <artifactId>ietf-inet-types</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}</groupId>
76             <artifactId>mockito-configuration</artifactId>
77             <version>${project.version}</version>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>junit</groupId>
82             <artifactId>junit</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>${project.groupId}</groupId>
86             <artifactId>bgp-linkstate</artifactId>
87             <scope>test</scope>
88         </dependency>
89     </dependencies>
90
91     <build>
92         <plugins>
93             <plugin>
94                 <groupId>org.apache.felix</groupId>
95                 <artifactId>maven-bundle-plugin</artifactId>
96                 <extensions>true</extensions>
97                 <configuration>
98                     <instructions>
99                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
100                         <Export-Package>
101                             org.opendaylight.protocol.bgp.parser.impl.*,
102                         </Export-Package>
103                     </instructions>
104                 </configuration>
105             </plugin>
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-jar-plugin</artifactId>
109                 <executions>
110                     <execution>
111                         <phase>package</phase>
112                         <goals>
113                             <goal>test-jar</goal>
114                         </goals>
115                     </execution>
116                 </executions>
117             </plugin>
118         </plugins>
119     </build>
120 </project>