Bump versions by x.y.(z+1)
[yangtools.git] / third-party / triemap / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  (C) Copyright 2016 Pantheon Technologies, s.r.o. and others.
5
6  Licensed under the Apache License, Version 2.0 (the "License");
7  you may not use this file except in compliance with the License.
8  You may obtain a copy of the License at
9
10      http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17 -->
18 <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/maven-v4_0_0.xsd">
19
20     <parent>
21         <groupId>org.opendaylight.odlparent</groupId>
22         <artifactId>bundle-parent</artifactId>
23         <version>1.8.5-SNAPSHOT</version>
24         <relativePath/>
25     </parent>
26
27     <modelVersion>4.0.0</modelVersion>
28     <groupId>org.opendaylight.yangtools</groupId>
29     <artifactId>triemap</artifactId>
30     <version>0.9.5-SNAPSHOT</version>
31     <packaging>bundle</packaging>
32
33     <description>Java implementation of a concurrent trie hash map from Scala collections library</description>
34
35     <dependencies>
36         <dependency>
37             <groupId>com.google.guava</groupId>
38             <artifactId>guava</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>junit</groupId>
42             <artifactId>junit</artifactId>
43         </dependency>
44     </dependencies>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <artifactId>maven-checkstyle-plugin</artifactId>
50                 <configuration>
51                     <propertyExpansion>checkstyle.violationSeverity=warning</propertyExpansion>
52                 </configuration>
53                 <executions>
54                     <execution>
55                         <id>check-license</id>
56                         <goals>
57                             <goal>check</goal>
58                         </goals>
59                         <configuration>
60                             <!-- This project has a different license -->
61                             <skip>true</skip>
62                         </configuration>
63                     </execution>
64                 </executions>
65             </plugin>
66             <plugin>
67                 <groupId>org.codehaus.mojo</groupId>
68                 <artifactId>findbugs-maven-plugin</artifactId>
69                 <configuration>
70                     <failOnError>true</failOnError>
71                 </configuration>
72             </plugin>
73         </plugins>
74     </build>
75
76     <licenses>
77         <license>
78             <name>The Apache Software License, Version 2.0</name>
79             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
80             <distribution>repo</distribution>
81         </license>
82     </licenses>
83
84     <!--
85         Maven Site Configuration
86
87         The following configuration is necessary for maven-site-plugin to
88         correctly identify the correct deployment path for OpenDaylight Maven
89         sites.
90     -->
91     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
92
93     <distributionManagement>
94         <site>
95             <id>opendaylight-site</id>
96             <url>${nexus.site.url}/${project.artifactId}/</url>
97         </site>
98     </distributionManagement>
99 </project>