Release Beryllium
[yangtools.git] / common / object-cache-guava / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.yangtools</groupId>
14         <artifactId>yangtools-parent</artifactId>
15         <version>0.8.0-Beryllium</version>
16         <relativePath>/../../common/parent/pom.xml</relativePath>
17     </parent>
18
19     <packaging>bundle</packaging>
20     <modelVersion>4.0.0</modelVersion>
21     <artifactId>object-cache-guava</artifactId>
22
23     <dependencies>
24         <dependency>
25             <groupId>${project.groupId}</groupId>
26             <artifactId>object-cache-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>com.google.guava</groupId>
30             <artifactId>guava</artifactId>
31         </dependency>
32
33         <dependency>
34             <groupId>junit</groupId>
35             <artifactId>junit</artifactId>
36             <scope>test</scope>
37         </dependency>
38     </dependencies>
39     <build>
40         <plugins>
41             <plugin>
42                 <groupId>org.apache.felix</groupId>
43                 <artifactId>maven-bundle-plugin</artifactId>
44                 <extensions>true</extensions>
45                 <configuration>
46                     <instructions>
47                         <Export-Package>
48                             org.opendaylight.yangtools.objcache.impl
49                         </Export-Package>
50                         <Private-Package>
51                             org.opendaylight.yangtools.objcache.guava
52                         </Private-Package>
53                     </instructions>
54                 </configuration>
55             </plugin>
56         </plugins>
57     </build>
58
59   <!--
60       Maven Site Configuration
61
62       The following configuration is necessary for maven-site-plugin to
63       correctly identify the correct deployment path for OpenDaylight Maven
64       sites.
65   -->
66   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
67
68   <distributionManagement>
69     <site>
70       <id>opendaylight-site</id>
71       <url>${nexus.site.url}/${project.artifactId}/</url>
72     </site>
73   </distributionManagement>
74 </project>