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