spring ver from 5.0.9 to 5.1.2
[logging-analytics.git] / reference / logging-demo / 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.4.0-SNAPSHOT</version>
7   </parent>
8   <artifactId>logging-demo</artifactId>
9   <packaging>war</packaging>
10   <name>logging-demo</name>
11   <properties>
12        <jackson-2-version>2.5.1</jackson-2-version>
13        <!-- https://mvnrepository.com/artifact/org.springframework/spring-aop/5.0.5.RELEASE -->
14        <spring.version>5.1.2.RELEASE</spring.version>
15        <logback.version>1.2.3</logback.version>                
16   </properties>
17   <build>
18       <plugins>
19                     <!-- Checkstyle plugin - used to report on compliance with -->
20               <!-- the Google style guide. -->
21               <plugin>
22                   <groupId>org.apache.maven.plugins</groupId>
23                   <artifactId>maven-site-plugin</artifactId>
24               </plugin>
25       <plugin>
26         <groupId>org.apache.maven.plugins</groupId>
27         <artifactId>maven-compiler-plugin</artifactId>
28         <version>3.2</version>
29         <configuration>
30           <source>1.8</source>
31           <target>1.8</target>
32         </configuration>
33       </plugin>
34     </plugins>
35       <pluginManagement>
36         <plugins>
37                 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
38                 <plugin>
39                         <groupId>org.eclipse.m2e</groupId>
40                         <artifactId>lifecycle-mapping</artifactId>
41                         <version>1.0.0</version>
42                         <configuration>
43                                 <lifecycleMappingMetadata>
44                                         <pluginExecutions>
45                                                 <pluginExecution>
46                                                         <pluginExecutionFilter>
47                                                                 <groupId>
48                                                                         org.apache.maven.plugins
49                                                                 </groupId>
50                                                                 <artifactId>
51                                                                         maven-compiler-plugin
52                                                                 </artifactId>
53                                                                 <versionRange>
54                                                                         [3.2,)
55                                                                 </versionRange>
56                                                                 <goals>
57                                                                         <goal>testCompile</goal>
58                                                                 </goals>
59                                                         </pluginExecutionFilter>
60                                                         <action>
61                                                                 <ignore></ignore>
62                                                         </action>
63                                                 </pluginExecution>
64                                         </pluginExecutions>
65                                 </lifecycleMappingMetadata>
66                         </configuration>
67                 </plugin>
68         </plugins>
69       </pluginManagement>
70   </build>
71     <dependencies>
72         <dependency>
73             <groupId>org.onap.logging-analytics</groupId>
74             <artifactId>logging-mock-service</artifactId>
75             <version>1.4.0-SNAPSHOT</version>
76         </dependency>
77        
78         
79             <!-- https://jersey.java.net/documentation/latest/modules-and-dependencies.html -->
80     <dependency>
81         <groupId>javax.ws.rs</groupId>
82         <artifactId>javax.ws.rs-api</artifactId>
83         <version>2.0.1</version>
84     </dependency>
85     <dependency>
86         <groupId>org.glassfish.jersey.containers</groupId>
87         <artifactId>jersey-container-servlet</artifactId>
88         <version>2.23</version>
89     </dependency>
90     <dependency>
91         <groupId>org.glassfish.jersey.core</groupId>
92         <artifactId>jersey-server</artifactId>
93         <version>2.23</version>
94     </dependency>
95     <dependency>
96         <groupId>org.glassfish.jersey.core</groupId>
97         <artifactId>jersey-client</artifactId>
98         <version>2.23</version>
99     </dependency>
100     <dependency>
101         <groupId>org.glassfish.jersey.media</groupId>
102         <artifactId>jersey-media-multipart</artifactId>
103         <version>2.23</version>
104     </dependency>
105     <!-- fixes http://stackoverflow.com/questions/23442440/messagebodyreader-not-found-for-media-type-application-json -->
106     <dependency>
107         <groupId>org.glassfish.jersey.media</groupId>
108         <artifactId>jersey-media-json-jackson</artifactId>
109         <version>2.23</version>
110     </dependency>
111     <!-- for spring injection in rest -->
112     <dependency>
113         <groupId>org.glassfish.jersey.ext</groupId>
114         <artifactId>jersey-spring3</artifactId>
115         <version>2.23</version>
116         <!-- for https://github.com/JakubStas/SpringWithSwagger/issues/2 -->
117         <exclusions>
118                 <exclusion>
119                     <artifactId>spring-context</artifactId>
120                     <groupId>org.springframework</groupId>
121                 </exclusion>
122                 <exclusion>
123                     <artifactId>spring-core</artifactId>
124                     <groupId>org.springframework</groupId>
125                 </exclusion>
126                 <exclusion>
127                     <artifactId>spring-web</artifactId>
128                     <groupId>org.springframework</groupId>
129                 </exclusion>
130                 <exclusion>
131                     <artifactId>spring-beans</artifactId>
132                     <groupId>org.springframework</groupId>
133                 </exclusion>
134             </exclusions>
135     </dependency>
136
137         <!-- json parsing -->
138 <!-- the core, which includes Streaming API, shared low-level abstractions (but NOT data-binding) -->
139  <dependency>
140    <groupId>com.fasterxml.jackson.core</groupId>
141    <artifactId>jackson-core</artifactId>
142    <version>${jackson-2-version}</version>
143  </dependency>
144
145  <!-- Just the annotations; use this dependency if you want to attach annotations
146       to classes without connecting them to the code. -->
147  <dependency>
148    <groupId>com.fasterxml.jackson.core</groupId>
149    <artifactId>jackson-annotations</artifactId>
150    <version>${jackson-2-version}</version>
151 </dependency>
152
153 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
154 <dependency>
155   <groupId>com.fasterxml.jackson.core</groupId>
156   <artifactId>jackson-databind</artifactId>
157   <version>${jackson-2-version}</version>
158 </dependency>
159
160 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
161 <dependency>
162   <groupId>com.fasterxml.jackson.dataformat</groupId>
163   <artifactId>jackson-dataformat-smile</artifactId>
164   <version>${jackson-2-version}</version>
165 </dependency>
166 <!-- JAX-RS provider -->
167 <dependency>
168    <groupId>com.fasterxml.jackson.jaxrs</groupId>
169    <artifactId>jackson-jaxrs-json-provider</artifactId>
170    <version>${jackson-2-version}</version>
171 </dependency>
172 <!-- Support for JAX-B annotations as additional configuration -->
173 <dependency>
174   <groupId>com.fasterxml.jackson.module</groupId>
175   <artifactId>jackson-module-jaxb-annotations</artifactId>
176   <version>${jackson-2-version}</version>
177 </dependency>
178     <dependency>
179         <groupId>com.owlike</groupId>
180         <artifactId>genson</artifactId>
181         <version>1.1</version>
182     </dependency>
183     <!-- dependency>
184         <groupId>org.eclipse.persistence</groupId>
185         <artifactId>javax.persistence</artifactId>
186         <version>2.0.0</version>
187     </dependency-->
188
189     <dependency>
190         <groupId>javax.servlet</groupId>
191         <artifactId>javax.servlet-api</artifactId>
192         <version>3.0.1</version>
193         <scope>provided</scope>
194     </dependency>
195    
196        <dependency>
197             <groupId>org.springframework</groupId>
198             <artifactId>spring-aop</artifactId>
199             <version>${spring.version}</version>
200         </dependency>
201         <dependency>
202             <groupId>org.springframework</groupId>
203             <artifactId>spring-context</artifactId>
204             <version>${spring.version}</version>
205         </dependency>
206         <dependency>
207             <groupId>org.springframework</groupId>
208             <artifactId>spring-core</artifactId>
209             <version>${spring.version}</version>
210         </dependency>
211         <dependency>
212             <groupId>org.springframework</groupId>
213             <artifactId>spring-orm</artifactId>
214             <version>${spring.version}</version>
215         </dependency>
216         <dependency>
217             <groupId>org.springframework</groupId>
218             <artifactId>spring-oxm</artifactId>
219             <version>${spring.version}</version>
220         </dependency>
221         <dependency>
222             <groupId>org.springframework</groupId>
223             <artifactId>spring-test</artifactId>
224             <version>${spring.version}</version>
225             <!--scope>test</scope-->
226         </dependency>
227         <dependency> 
228      <groupId>org.springframework</groupId> 
229      <artifactId>spring-aspects</artifactId> 
230      <version>${spring.version}</version> 
231         </dependency>
232         <dependency>
233             <groupId>org.aspectj</groupId>
234             <artifactId>aspectjrt</artifactId>
235             <version>1.9.1</version>
236         </dependency>
237         <dependency>
238             <groupId>org.springframework</groupId>
239             <artifactId>spring-tx</artifactId>
240             <version>${spring.version}</version>
241         </dependency>
242         <dependency>
243             <groupId>org.springframework</groupId>
244             <artifactId>spring-web</artifactId>
245             <version>${spring.version}</version>
246         </dependency>
247         <dependency>
248             <groupId>org.springframework</groupId>
249             <artifactId>spring-webmvc</artifactId>
250             <version>${spring.version}</version>
251         </dependency>
252         <dependency>
253             <groupId>ch.qos.logback</groupId>
254             <artifactId>logback-core</artifactId>
255             <version>${logback.version}</version>
256         </dependency>
257         <dependency>
258             <groupId>ch.qos.logback</groupId>
259             <artifactId>logback-classic</artifactId>
260             <version>${logback.version}</version>
261         </dependency>
262         <!-- JUnit 4.12 used to come with EELF -->
263         <dependency>
264             <groupId>org.powermock</groupId>
265             <artifactId>powermock-module-junit4</artifactId>
266             <version>1.6.4</version>
267         </dependency>
268         <dependency>
269             <groupId>junit</groupId>
270             <artifactId>junit</artifactId>
271             <version>4.12</version>
272             <scope>test</scope>
273         </dependency>  
274     </dependencies>
275 </project>