Move version from 1.0 to 0.1.0-SNAPSHOT
[bgpcep.git] / concepts / 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>protocol-parent</artifactId>
9                 <version>0.1.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>concepts</artifactId>
14         <description>Basic protocol concepts</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>util</artifactId>
25                         <version>${project.version}</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>com.google.code.findbugs</groupId>
29                         <artifactId>jsr305</artifactId>
30                         <version>2.0.1</version>
31                 </dependency>
32         </dependencies>
33
34         <build>
35                 <plugins>
36                         <plugin>
37                                 <groupId>org.apache.felix</groupId>
38                                 <artifactId>maven-bundle-plugin</artifactId>
39                                 <version>${maven.bundle.version}</version>
40                                 <extensions>true</extensions>
41                                 <configuration>
42                                         <instructions>
43                                                 <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
44                                                 <Import-Package>
45                                                         org.opendaylight.protocol.concepts,
46                             org.opendaylight.protocol.util,
47                             com.google.common.base,
48                             com.google.common.collect,
49                             com.google.common.net,
50                             com.google.common.primitives,
51                             com.google.guava;
52                                                 </Import-Package>
53                                                 <Export-Package>
54                             org.opendaylight.protocol.concepts,
55                                                 </Export-Package>
56                                         </instructions>
57                                 </configuration>
58                         </plugin>
59                 </plugins>
60         </build>
61
62         <distributionManagement>
63                 <site>
64                         <id>${project.artifactId}</id>
65                         <name>NPS-CONCEPTS Module site</name>
66                         <url>${basedir}/target/site/${project.artifactId}</url>
67                 </site>
68         </distributionManagement>
69
70 </project>