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