68bacdad49d0b1d547cf9294a1041f7165d3e23d
[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.odlparent</groupId>
14         <artifactId>bundle-parent</artifactId>
15         <version>4.0.0</version>
16         <relativePath/>
17     </parent>
18     <packaging>bundle</packaging>
19     <modelVersion>4.0.0</modelVersion>
20     <groupId>org.opendaylight.yangtools</groupId>
21     <artifactId>util</artifactId>
22     <version>2.1.0-SNAPSHOT</version>
23
24     <properties>
25         <sonar.jacoco.reportPath>${project.basedir}/../../target/jacoco.exec</sonar.jacoco.reportPath>
26     </properties>
27
28     <dependencyManagement>
29         <dependencies>
30             <dependency>
31                 <groupId>tech.pantheon.triemap</groupId>
32                 <artifactId>bom</artifactId>
33                 <version>1.0.0</version>
34                 <scope>import</scope>
35                 <type>pom</type>
36             </dependency>
37             <dependency>
38                 <groupId>org.opendaylight.yangtools</groupId>
39                 <artifactId>yangtools-artifacts</artifactId>
40                 <version>${project.version}</version>
41                 <scope>import</scope>
42                 <type>pom</type>
43             </dependency>
44         </dependencies>
45     </dependencyManagement>
46
47     <dependencies>
48         <dependency>
49             <groupId>org.opendaylight.yangtools</groupId>
50             <artifactId>concepts</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>tech.pantheon.triemap</groupId>
54             <artifactId>triemap</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>com.google.guava</groupId>
58             <artifactId>guava</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.immutables</groupId>
62             <artifactId>value</artifactId>
63         </dependency>
64
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>mockito-configuration</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>com.google.guava</groupId>
71             <artifactId>guava-testlib</artifactId>
72             <scope>test</scope>
73         </dependency>
74     </dependencies>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-checkstyle-plugin</artifactId>
81                 <configuration>
82                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
83                 </configuration>
84             </plugin>
85             <plugin>
86                 <groupId>org.codehaus.mojo</groupId>
87                 <artifactId>findbugs-maven-plugin</artifactId>
88                 <configuration>
89                     <failOnError>true</failOnError>
90                 </configuration>
91             </plugin>
92         </plugins>
93     </build>
94
95 </project>