Rename artifacts
[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         <parent>
7                 <groupId>org.opendaylight.bgpcep</groupId>
8                 <artifactId>bgp-parent</artifactId>
9                 <version>1.0</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>bgp-parser-impl</artifactId>
14         <description>BGP Parser Implementation Updated to draft-02</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>${project.groupId}</groupId>
24                         <artifactId>concepts</artifactId>
25                         <version>1.0</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>${project.groupId}</groupId>
29                         <artifactId>bgp-concepts</artifactId>
30                         <version>1.0</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>${project.groupId}</groupId>
34                         <artifactId>bgp-linkstate</artifactId>
35                         <version>1.0</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>${project.groupId}</groupId>
39                         <artifactId>util</artifactId>
40                         <version>1.0</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>${project.groupId}</groupId>
44                         <artifactId>bgp-parser-api</artifactId>
45                         <version>1.0</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>${project.groupId}</groupId>
49                         <artifactId>bgp-util</artifactId>
50                         <version>1.0</version>
51                 </dependency>
52                 <dependency>
53                         <groupId>junit</groupId>
54                         <artifactId>junit</artifactId>
55                         <version>${junit.version}</version>
56                         <scope>test</scope>
57                 </dependency>
58                 <dependency>
59                         <groupId>${project.groupId}</groupId>
60                         <artifactId>mockito-configuration</artifactId>
61                         <version>1.0</version>
62                         <scope>test</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>com.google.guava</groupId>
66                         <artifactId>guava</artifactId>
67                         <version>${guava.version}</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>com.google.code.findbugs</groupId>
71                         <artifactId>jsr305</artifactId>
72                         <version>2.0.1</version>
73                 </dependency>
74         </dependencies>
75
76         <build>
77                 <plugins>
78                         <plugin>
79                                 <groupId>org.apache.felix</groupId>
80                                 <artifactId>maven-bundle-plugin</artifactId>
81                                 <version>${maven.bundle.version}</version>
82                                 <extensions>true</extensions>
83                                 <configuration>
84                                         <instructions>
85                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
86                                                 <Private-Package>
87                                                         javax.annotation.*,
88                                                         org.opendaylight.protocol.bgp.parser.impl.*
89                                                 </Private-Package>
90                                                 <Import-Package>
91                                                         org.opendaylight.protocol.bgp.parser.message,
92                                                         org.opendaylight.protocol.bgp.parser.parameter,
93                                                         org.opendaylight.protocol.bgp.concepts,
94                                                         org.opendaylight.protocol.bgp.linkstate,
95                             org.opendaylight.protocol.bgp.parser,
96                             org.opendaylight.protocol.bgp.util,
97                                                         org.opendaylight.protocol.concepts,
98                                                         org.opendaylight.protocol.framework,
99                             org.opendaylight.protocol.util,
100                                                         com.google.common.*,
101                                                         org.slf4j,
102                                                         org.apache.commons.lang
103                                                 </Import-Package>
104                                                 <Export-Package>
105                                                 </Export-Package>
106                                         </instructions>
107                                 </configuration>
108                         </plugin>
109                         <plugin>
110                                 <groupId>org.apache.maven.plugins</groupId>
111                                 <artifactId>maven-jar-plugin</artifactId>
112                                 <version>2.4</version>
113                                 <executions>
114                                         <execution>
115                                                 <phase>package</phase>
116                                                 <goals>
117                                                         <goal>test-jar</goal>
118                                                 </goals>
119                                         </execution>
120                                 </executions>
121                         </plugin>
122                 </plugins>
123         </build>
124
125         <distributionManagement>
126                 <site>
127                         <id>${project.artifactId}</id>
128                         <name>BGP-PARSER-IMPL Module site</name>
129                         <url>${basedir}/target/site/${project.artifactId}</url>
130                 </site>
131         </distributionManagement>
132
133 </project>