Bump versions to 13.0.6-SNAPSHOT
[yangtools.git] / common / testutils / pom.xml
1 <?xml version="1.0"?>
2 <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">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>bundle-parent</artifactId>
8         <version>13.1.2</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.yangtools</groupId>
13     <artifactId>testutils</artifactId>
14     <version>13.0.6-SNAPSHOT</version>
15     <!-- Currently not needed, maybe later: <packaging>bundle</packaging> -->
16
17     <properties>
18         <!-- FIXME: fix these up and set maven.javadoc.failOnWarnings=true -->
19         <doclint>all,-missing</doclint>
20     </properties>
21
22     <dependencyManagement>
23         <dependencies>
24             <dependency>
25                 <groupId>org.opendaylight.yangtools</groupId>
26                 <artifactId>yangtools-artifacts</artifactId>
27                 <version>${project.version}</version>
28                 <scope>import</scope>
29                 <type>pom</type>
30             </dependency>
31         </dependencies>
32     </dependencyManagement>
33
34     <dependencies>
35         <!-- NOTE: The use of <scope> here is a little particular, compared to other standard projects...
36
37              As this test helper project is intended to itself be used as a <scope>test
38              <dependency> so that the utility code in src/main/java of this project can
39              be used to write src/test/java code in projects using it, all <dependencies>
40              here are <scope>compile here (the default, don't mention it), and NOT <scope>test.
41              (Only a <dependency> which only this project would want to use in its own src/test/java code
42              but not expose to projects depending on it would be <scope>test.  However that kind of against
43              the whole point of this project, and currently there no such dependencies here.
44          -->
45         <dependency>
46             <groupId>org.slf4j</groupId>
47             <artifactId>slf4j-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.slf4j</groupId>
51             <artifactId>slf4j-simple</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.mockito</groupId>
56             <artifactId>mockito-core</artifactId>
57             <scope>compile</scope>
58         </dependency>
59         <dependency>
60             <groupId>com.google.guava</groupId>
61             <artifactId>guava</artifactId>
62         </dependency>
63     </dependencies>
64 </project>