Bumping versions by 0.0.1 for next dev cycle
[yangtools.git] / common / util / 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.1-SNAPSHOT</version>
16         <relativePath>/../../common/parent/pom.xml</relativePath>
17     </parent>
18     <packaging>bundle</packaging>
19     <modelVersion>4.0.0</modelVersion>
20     <artifactId>util</artifactId>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.yangtools</groupId>
25             <artifactId>concepts</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>com.google.code.findbugs</groupId>
29             <artifactId>jsr305</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.slf4j</groupId>
33             <artifactId>slf4j-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>com.google.guava</groupId>
37             <artifactId>guava</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>com.github.romix</groupId>
41             <artifactId>java-concurrent-hash-trie-map</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>junit</groupId>
46             <artifactId>junit</artifactId>
47             <scope>test</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>mockito-configuration</artifactId>
52             <scope>test</scope>
53         </dependency>
54     </dependencies>
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.felix</groupId>
59                 <artifactId>maven-bundle-plugin</artifactId>
60                 <extensions>true</extensions>
61             </plugin>
62         </plugins>
63     </build>
64
65   <!--
66       Maven Site Configuration
67
68       The following configuration is necessary for maven-site-plugin to
69       correctly identify the correct deployment path for OpenDaylight Maven
70       sites.
71   -->
72   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
73
74   <distributionManagement>
75     <site>
76       <id>opendaylight-site</id>
77       <url>${nexus.site.url}/${project.artifactId}/</url>
78     </site>
79   </distributionManagement>
80 </project>