synch version
[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.4-SNAPSHOT</version>
9   </parent>
10
11   <artifactId>logging-reference</artifactId>
12   <packaging>pom</packaging>
13
14   <name>logging-reference</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   </dependencies>
46
47   <build>
48     <pluginManagement>
49       <plugins>
50         <plugin>
51           <groupId>org.apache.maven.plugins</groupId>
52           <artifactId>maven-compiler-plugin</artifactId>
53           <version>3.7.0</version>
54           <configuration>
55             <source>1.8</source>
56             <target>1.8</target>
57           </configuration>
58         </plugin>
59         <plugin>
60           <artifactId>maven-release-plugin</artifactId>
61           <version>2.4.2</version>
62           <dependencies>
63             <dependency>
64               <groupId>org.apache.maven.scm</groupId>
65               <artifactId>maven-scm-provider-gitexe</artifactId>
66               <version>1.8.1</version>
67             </dependency>
68           </dependencies>
69         </plugin>
70
71         <!-- Checkstyle plugin - used to report on compliance with -->
72         <!-- the Google style guide. -->
73         <plugin>
74           <groupId>org.apache.maven.plugins</groupId>
75           <artifactId>maven-site-plugin</artifactId>
76           <version>3.6</version>
77         </plugin>
78       </plugins>
79     </pluginManagement>
80   </build>
81
82   <reporting>
83     <plugins>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-checkstyle-plugin</artifactId>
87         <version>2.17</version>
88         <reportSets>
89           <reportSet>
90             <reports>
91               <report>checkstyle</report>
92             </reports>
93           </reportSet>
94         </reportSets>
95       </plugin>
96     </plugins>
97   </reporting>
98 </project>