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