0e7c2d1551f89ff1920c6a25e33c811544bee24c
[logging-analytics.git] / reference / logging-library / pom.xml
1 <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">
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4       <groupId>org.onap.logging-analytics</groupId>
5       <artifactId>logging-reference</artifactId>
6       <version>1.6.1-SNAPSHOT</version>
7   </parent>
8   <artifactId>logging-library</artifactId>
9   <packaging>jar</packaging>
10   <name>logging-library</name>
11   <properties>
12       <spring.version>5.1.2.RELEASE</spring.version>
13       <logback.version>1.2.3</logback.version>          
14   </properties>
15   <build>
16       <plugins>
17       <plugin>
18         <groupId>org.apache.maven.plugins</groupId>
19         <artifactId>maven-compiler-plugin</artifactId>
20         <version>3.2</version>
21         <configuration>
22           <source>1.8</source>
23           <target>1.8</target>
24         </configuration>
25       </plugin>
26     </plugins>
27       <pluginManagement>
28         <plugins>
29                 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
30                 <plugin>
31                         <groupId>org.eclipse.m2e</groupId>
32                         <artifactId>lifecycle-mapping</artifactId>
33                         <version>1.0.0</version>
34                         <configuration>
35                                 <lifecycleMappingMetadata>
36                                         <pluginExecutions>
37                                                 <pluginExecution>
38                                                         <pluginExecutionFilter>
39                                                                 <groupId>
40                                                                         org.apache.maven.plugins
41                                                                 </groupId>
42                                                                 <artifactId>
43                                                                         maven-compiler-plugin
44                                                                 </artifactId>
45                                                                 <versionRange>
46                                                                         [3.2,)
47                                                                 </versionRange>
48                                                                 <goals>
49                                                                         <goal>testCompile</goal>
50                                                                 </goals>
51                                                         </pluginExecutionFilter>
52                                                         <action>
53                                                                 <ignore></ignore>
54                                                         </action>
55                                                 </pluginExecution>
56                                         </pluginExecutions>
57                                 </lifecycleMappingMetadata>
58                         </configuration>
59                 </plugin>
60         </plugins>
61       </pluginManagement>
62   </build>
63   
64   <dependencies>
65        <dependency>
66            <groupId>org.onap.logging-analytics</groupId>
67            <artifactId>logging-slf4j</artifactId>
68            <version>1.6.1-SNAPSHOT</version>
69        </dependency>
70        <!--  decouple HttpServlet parameters from both this project and slf4j later -->
71        <dependency>
72            <groupId>javax.servlet</groupId>
73            <artifactId>javax.servlet-api</artifactId>
74            <version>3.0.1</version>
75            <scope>provided</scope>
76        </dependency>
77        <dependency>
78             <groupId>org.springframework</groupId>
79             <artifactId>spring-aop</artifactId>
80             <version>${spring.version}</version>
81         </dependency>
82         <dependency>
83             <groupId>org.springframework</groupId>
84             <artifactId>spring-context</artifactId>
85             <version>${spring.version}</version>
86         </dependency>
87         <dependency>
88             <groupId>org.springframework</groupId>
89             <artifactId>spring-core</artifactId>
90             <version>${spring.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>org.springframework</groupId>
94             <artifactId>spring-orm</artifactId>
95             <version>${spring.version}</version>
96         </dependency>
97         <dependency>
98             <groupId>org.springframework</groupId>
99             <artifactId>spring-oxm</artifactId>
100             <version>${spring.version}</version>
101         </dependency>
102         <dependency>
103             <groupId>org.springframework</groupId>
104             <artifactId>spring-test</artifactId>
105             <version>${spring.version}</version>
106             <!--scope>test</scope-->
107         </dependency>
108         <dependency> 
109             <groupId>org.springframework</groupId> 
110             <artifactId>spring-aspects</artifactId> 
111             <version>${spring.version}</version> 
112         </dependency>
113         <dependency>
114             <groupId>org.aspectj</groupId>
115             <artifactId>aspectjrt</artifactId>
116             <version>1.9.1</version>
117         </dependency>
118         <dependency>
119             <groupId>org.springframework</groupId>
120             <artifactId>spring-tx</artifactId>
121             <version>${spring.version}</version>
122         </dependency>
123         <dependency>
124             <groupId>org.springframework</groupId>
125             <artifactId>spring-web</artifactId>
126             <version>${spring.version}</version>
127         </dependency>
128         <dependency>
129             <groupId>org.springframework</groupId>
130             <artifactId>spring-webmvc</artifactId>
131             <version>${spring.version}</version>
132         </dependency>
133         <dependency>
134             <groupId>ch.qos.logback</groupId>
135             <artifactId>logback-core</artifactId>
136             <version>${logback.version}</version>
137          </dependency>
138          <dependency>
139             <groupId>ch.qos.logback</groupId>
140             <artifactId>logback-classic</artifactId>
141             <version>${logback.version}</version>
142          </dependency>  
143    </dependencies>  
144 </project>