bump xtendbeans 1.3.0 → 1.3.1
[mdsal.git] / binding / mdsal-binding-test-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Red Hat, 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"
11   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>odlparent</artifactId>
17     <version>3.0.2</version>
18     <relativePath />
19   </parent>
20
21   <groupId>org.opendaylight.mdsal</groupId>
22   <artifactId>mdsal-binding-test-utils</artifactId>
23   <version>2.5.0-SNAPSHOT</version>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.mdsal</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <!-- NB: All of these are, intentionally, NOT <scope>test</scope>,
39          because downstream consumer projects of the test utilities
40          will necessarily also require these dependencies in order
41          to run tests such as the AssertDataObjectsTest. -->
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <scope>compile</scope>
46     </dependency>
47     <dependency>
48       <groupId>ch.vorburger</groupId>
49       <artifactId>xtendbeans</artifactId>
50       <scope>compile</scope>
51       <version>1.3.1</version>
52     </dependency>
53     <dependency>
54       <groupId>com.googlecode.java-diff-utils</groupId>
55       <artifactId>diffutils</artifactId>
56       <version>1.3.0</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.mdsal</groupId>
60       <artifactId>mdsal-binding-dom-adapter</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.mdsal</groupId>
64       <artifactId>mdsal-binding-dom-adapter</artifactId>
65       <type>test-jar</type>
66     </dependency>
67     <!-- The following are dependencies which are listed
68          as scope test in mdsal-binding-dom-adapter; we
69          wanted most of them as scope compile here...      -->
70     <dependency>
71       <groupId>org.opendaylight.mdsal</groupId>
72       <artifactId>mdsal-dom-broker</artifactId>
73     </dependency>
74
75     <!-- The following, contrary to the above, ARE <scope>test,
76          because they are only required by the test utilities
77          self test code in src/test, but not (necessarily)
78          by a downstream consumer of the test utilities.   -->
79     <dependency>
80       <groupId>org.opendaylight.mdsal</groupId>
81       <artifactId>mdsal-binding-test-model</artifactId>
82       <scope>test</scope>
83     </dependency>
84     <dependency>
85       <groupId>com.google.truth</groupId>
86       <artifactId>truth</artifactId>
87       <scope>test</scope>
88     </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.maven.plugins</groupId>
95         <artifactId>maven-checkstyle-plugin</artifactId>
96         <configuration>
97           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
98         </configuration>
99       </plugin>
100       <plugin>
101         <groupId>org.codehaus.mojo</groupId>
102         <artifactId>findbugs-maven-plugin</artifactId>
103         <configuration>
104           <failOnError>true</failOnError>
105         </configuration>
106       </plugin>
107     </plugins>
108   </build>
109
110   <!--
111       Maven Site Configuration
112
113       The following configuration is necessary for maven-site-plugin to
114       correctly identify the correct deployment path for OpenDaylight Maven
115       sites.
116   -->
117   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
118
119   <distributionManagement>
120     <site>
121       <id>opendaylight-site</id>
122       <url>${nexus.site.url}/${project.artifactId}/</url>
123     </site>
124   </distributionManagement>
125
126 </project>