cfd58c6bc7d5c6193e97faa8fce04c0acb2bb22b
[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.2.6-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   </modules>
23   <build>
24       <pluginManagement>
25           <plugins>
26               <plugin>
27                   <groupId>org.apache.maven.plugins</groupId>
28                   <artifactId>maven-compiler-plugin</artifactId>
29                   <configuration>
30                       <source>1.8</source>
31                       <target>1.8</target>
32                   </configuration>
33               </plugin>
34               <plugin>
35                   <artifactId>maven-release-plugin</artifactId>
36                   <version>2.4.2</version>
37                   <dependencies>
38                       <dependency>
39                           <groupId>org.apache.maven.scm</groupId>
40                           <artifactId>maven-scm-provider-gitexe</artifactId>
41                           <version>1.8.1</version>
42                       </dependency>
43                   </dependencies>
44               </plugin>
45               
46               <!-- Checkstyle plugin - used to report on compliance with -->
47               <!-- the Google style guide. -->
48               <plugin>
49                   <groupId>org.apache.maven.plugins</groupId>
50                   <artifactId>maven-site-plugin</artifactId>
51                   <version>3.6</version>
52               </plugin>
53                 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
54                 <plugin>
55                         <groupId>org.eclipse.m2e</groupId>
56                         <artifactId>lifecycle-mapping</artifactId>
57                         <version>1.0.0</version>
58                         <configuration>
59                                 <lifecycleMappingMetadata>
60                                         <pluginExecutions>
61                                                 <pluginExecution>
62                                                         <pluginExecutionFilter>
63                                                                 <groupId>
64                                                                         org.apache.maven.plugins
65                                                                 </groupId>
66                                                                 <artifactId>
67                                                                         maven-compiler-plugin
68                                                                 </artifactId>
69                                                                 <versionRange>
70                                                                         [3.2,)
71                                                                 </versionRange>
72                                                                 <goals>
73                                                                         <goal>compile</goal>
74                                                                 </goals>
75                                                         </pluginExecutionFilter>
76                                                         <action>
77                                                                 <ignore></ignore>
78                                                         </action>
79                                                 </pluginExecution>
80                                         </pluginExecutions>
81                                 </lifecycleMappingMetadata>
82                         </configuration>
83                 </plugin>
84         </plugins>
85       </pluginManagement>
86   </build>
87   <properties>
88       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
89   </properties>
90   <reporting>
91       <plugins>
92           <plugin>
93               <groupId>org.apache.maven.plugins</groupId>
94               <artifactId>maven-checkstyle-plugin</artifactId>
95               <version>2.17</version>
96               <reportSets>
97                   <reportSet>
98                       <reports>
99                           <report>checkstyle</report>
100                       </reports>
101                   </reportSet>
102               </reportSets>
103           </plugin>
104       </plugins>
105 </reporting>
106     <dependencies>
107         <!--  pulls in banned logback-core 1.1.3 -->
108         <!-- dependency>
109             <groupId>com.att.eelf</groupId>
110             <artifactId>eelf-core</artifactId>
111             <version>1.0.0</version>
112         </dependency-->
113         <!-- JUnit 4.12 used to come with EELF -->
114         <dependency>
115             <groupId>org.powermock</groupId>
116             <artifactId>powermock-module-junit4</artifactId>
117             <version>1.6.4</version>
118         </dependency>
119         <dependency>
120             <groupId>junit</groupId>
121             <artifactId>junit</artifactId>
122             <version>4.12</version>
123             <scope>test</scope>
124         </dependency>
125         
126     </dependencies>
127 </project>