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