Simplify maven site configuration
[bgpcep.git] / bgp / parser-mock / 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>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>bgp-parser-mock</artifactId>
14         <description>BGP Parser Mock Implementation</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>bgp-concepts</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>${project.groupId}</groupId>
28                         <artifactId>bgp-util</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>${project.groupId}</groupId>
32                         <artifactId>bgp-linkstate</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>${project.groupId}</groupId>
36                         <artifactId>bgp-parser-api</artifactId>
37         </dependency>
38
39                 <dependency>
40                         <groupId>${project.groupId}</groupId>
41                         <artifactId>concepts</artifactId>
42                 </dependency>
43                 <dependency>
44                         <groupId>${project.groupId}</groupId>
45                         <artifactId>framework</artifactId>
46         </dependency>
47
48                 <dependency>
49                         <groupId>com.google.guava</groupId>
50                         <artifactId>guava</artifactId>
51                 </dependency>
52                 <dependency>
53                         <groupId>${project.groupId}</groupId>
54                         <artifactId>bgp-parser-impl</artifactId>
55                         <scope>test</scope>
56                 </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools.model</groupId>
59             <artifactId>ietf-inet-types</artifactId>
60             <scope>test</scope>
61         </dependency>
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65         </dependency>
66         </dependencies>
67
68         <build>
69                 <plugins>
70                         <plugin>
71                                 <groupId>org.apache.felix</groupId>
72                                 <artifactId>maven-bundle-plugin</artifactId>
73                                 <version>${maven.bundle.version}</version>
74                                 <extensions>true</extensions>
75                                 <configuration>
76                                         <instructions>
77                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
78                                                 <Export-Package>
79                                                         org.opendaylight.protocol.bgp.parser.mock
80                                                 </Export-Package>
81                                         </instructions>
82                                 </configuration>
83                         </plugin>
84                 </plugins>
85         </build>
86 </project>