Refactoring JUNIT and MOCKITO
[logging-analytics.git] / reference / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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.onap.logging-analytics</groupId>
7     <artifactId>logging-analytics</artifactId>
8     <version>1.6.5-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>logging-reference</artifactId>
12   <packaging>pom</packaging>
13
14   <name>logging-analytics :: ${project.artifactId}</name>
15
16   <modules>
17     <module>logging-demo</module>
18     <module>logging-library</module>
19     <module>logging-mock-service</module>
20     <module>logging-docker-root</module>
21     <module>logging-kubernetes</module>
22     <module>logging-slf4j</module>
23     <module>logging-slf4j-demo</module>
24     <module>provider</module>
25     <module>logging-filter</module>
26   </modules>
27
28   <properties>
29     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30   </properties>
31
32   <dependencies>
33     <dependency>
34       <groupId>org.powermock</groupId>
35       <artifactId>powermock-module-junit4</artifactId>
36       <version>1.6.4</version>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>junit</groupId>
41       <artifactId>junit</artifactId>
42       <version>4.12</version>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.mockito</groupId>
47       <artifactId>mockito-core</artifactId>
48       <version>2.23.4</version>
49       <scope>test</scope>
50     </dependency>
51   </dependencies>
52
53   <build>
54     <pluginManagement>
55       <plugins>
56         <plugin>
57           <groupId>org.apache.maven.plugins</groupId>
58           <artifactId>maven-compiler-plugin</artifactId>
59           <version>3.7.0</version>
60           <configuration>
61             <source>1.8</source>
62             <target>1.8</target>
63           </configuration>
64         </plugin>
65         <plugin>
66           <artifactId>maven-release-plugin</artifactId>
67           <version>2.4.2</version>
68           <dependencies>
69             <dependency>
70               <groupId>org.apache.maven.scm</groupId>
71               <artifactId>maven-scm-provider-gitexe</artifactId>
72               <version>1.8.1</version>
73             </dependency>
74           </dependencies>
75         </plugin>
76
77         <!-- Checkstyle plugin - used to report on compliance with -->
78         <!-- the Google style guide. -->
79         <plugin>
80           <groupId>org.apache.maven.plugins</groupId>
81           <artifactId>maven-site-plugin</artifactId>
82           <version>3.6</version>
83         </plugin>
84       </plugins>
85     </pluginManagement>
86   </build>
87
88   <reporting>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.maven.plugins</groupId>
92         <artifactId>maven-checkstyle-plugin</artifactId>
93         <version>2.17</version>
94         <reportSets>
95           <reportSet>
96             <reports>
97               <report>checkstyle</report>
98             </reports>
99           </reportSet>
100         </reportSets>
101       </plugin>
102     </plugins>
103   </reporting>
104 </project>