8bca5c3d077b574ef30328a435934a124fe4940f
[logging-analytics.git] / reference / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   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   <parent>
5       <groupId>org.onap.logging-analytics</groupId>
6       <artifactId>logging-analytics</artifactId>
7       <version>1.6.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>logging-reference</artifactId>
10   <packaging>pom</packaging>
11   <name>logging-reference</name>
12   <url>http://maven.apache.org</url> 
13   <modules>
14     <module>logging-demo</module>
15     <module>logging-library</module>
16     <module>logging-mock-service</module>
17     <module>logging-docker-root</module>
18     <module>logging-kubernetes</module>
19     <module>logging-slf4j</module>
20     <module>logging-slf4j-demo</module>
21     <module>provider</module>
22         <module>logging-filter</module>
23   </modules>
24   <build>
25       <pluginManagement>
26           <plugins>
27               <plugin>
28                   <groupId>org.apache.maven.plugins</groupId>
29                   <artifactId>maven-compiler-plugin</artifactId>
30                   <configuration>
31                       <source>1.8</source>
32                       <target>1.8</target>
33                   </configuration>
34               </plugin>
35               <plugin>
36                   <artifactId>maven-release-plugin</artifactId>
37                   <version>2.4.2</version>
38                   <dependencies>
39                       <dependency>
40                           <groupId>org.apache.maven.scm</groupId>
41                           <artifactId>maven-scm-provider-gitexe</artifactId>
42                           <version>1.8.1</version>
43                       </dependency>
44                   </dependencies>
45               </plugin>
46               
47               <!-- Checkstyle plugin - used to report on compliance with -->
48               <!-- the Google style guide. -->
49               <plugin>
50                   <groupId>org.apache.maven.plugins</groupId>
51                   <artifactId>maven-site-plugin</artifactId>
52                   <version>3.6</version>
53               </plugin>
54                 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
55                 <plugin>
56                         <groupId>org.eclipse.m2e</groupId>
57                         <artifactId>lifecycle-mapping</artifactId>
58                         <version>1.0.0</version>
59                         <configuration>
60                                 <lifecycleMappingMetadata>
61                                         <pluginExecutions>
62                                                 <pluginExecution>
63                                                         <pluginExecutionFilter>
64                                                                 <groupId>
65                                                                         org.apache.maven.plugins
66                                                                 </groupId>
67                                                                 <artifactId>
68                                                                         maven-compiler-plugin
69                                                                 </artifactId>
70                                                                 <versionRange>
71                                                                         [3.2,)
72                                                                 </versionRange>
73                                                                 <goals>
74                                                                         <goal>compile</goal>
75                                                                 </goals>
76                                                         </pluginExecutionFilter>
77                                                         <action>
78                                                                 <ignore></ignore>
79                                                         </action>
80                                                 </pluginExecution>
81                                         </pluginExecutions>
82                                 </lifecycleMappingMetadata>
83                         </configuration>
84                 </plugin>
85         </plugins>
86       </pluginManagement>
87   </build>
88   <properties>
89       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
90   </properties>
91   <reporting>
92       <plugins>
93           <plugin>
94               <groupId>org.apache.maven.plugins</groupId>
95               <artifactId>maven-checkstyle-plugin</artifactId>
96               <version>2.17</version>
97               <reportSets>
98                   <reportSet>
99                       <reports>
100                           <report>checkstyle</report>
101                       </reports>
102                   </reportSet>
103               </reportSets>
104           </plugin>
105       </plugins>
106 </reporting>
107     <dependencies>
108         <!--  pulls in banned logback-core 1.1.3 -->
109         <!-- dependency>
110             <groupId>com.att.eelf</groupId>
111             <artifactId>eelf-core</artifactId>
112             <version>1.0.0</version>
113         </dependency-->
114         <!-- JUnit 4.12 used to come with EELF -->
115         <dependency>
116             <groupId>org.powermock</groupId>
117             <artifactId>powermock-module-junit4</artifactId>
118             <version>1.6.4</version>
119         </dependency>
120         <dependency>
121             <groupId>junit</groupId>
122             <artifactId>junit</artifactId>
123             <version>4.12</version>
124             <scope>test</scope>
125         </dependency>
126         
127     </dependencies>
128 </project>