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