decouple aop lib wrapper from war
[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.2.2-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        <spring.version>4.3.6.RELEASE</spring.version>
14        <logback.version>1.2.3</logback.version> 
15        <onap.version>1.2.2-SNAPSHOT</onap.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                   <version>3.6</version>
25               </plugin>
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     <dependencies>
73         <dependency>
74             <groupId>org.onap.logging-analytics</groupId>
75             <artifactId>logging-library</artifactId>
76             <version>${onap.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.onap.logging-analytics</groupId>
80             <artifactId>logging-mock-service</artifactId>
81             <version>${onap.version}</version>
82         </dependency>
83         
84         
85             <!-- https://jersey.java.net/documentation/latest/modules-and-dependencies.html -->
86     <dependency>
87         <groupId>javax.ws.rs</groupId>
88         <artifactId>javax.ws.rs-api</artifactId>
89         <version>2.0.1</version>
90     </dependency>
91     <dependency>
92         <groupId>org.glassfish.jersey.containers</groupId>
93         <artifactId>jersey-container-servlet</artifactId>
94         <version>2.23</version>
95     </dependency>
96     <dependency>
97         <groupId>org.glassfish.jersey.core</groupId>
98         <artifactId>jersey-server</artifactId>
99         <version>2.23</version>
100     </dependency>
101     <dependency>
102         <groupId>org.glassfish.jersey.core</groupId>
103         <artifactId>jersey-client</artifactId>
104         <version>2.23</version>
105     </dependency>
106     <dependency>
107         <groupId>org.glassfish.jersey.media</groupId>
108         <artifactId>jersey-media-multipart</artifactId>
109         <version>2.23</version>
110     </dependency>
111     <!-- fixes http://stackoverflow.com/questions/23442440/messagebodyreader-not-found-for-media-type-application-json -->
112     <dependency>
113         <groupId>org.glassfish.jersey.media</groupId>
114         <artifactId>jersey-media-json-jackson</artifactId>
115         <version>2.23</version>
116     </dependency>
117     <!-- for spring injection in rest -->
118     <dependency>
119         <groupId>org.glassfish.jersey.ext</groupId>
120         <artifactId>jersey-spring3</artifactId>
121         <version>2.23</version>
122         <!-- for https://github.com/JakubStas/SpringWithSwagger/issues/2 -->
123         <exclusions>
124                 <exclusion>
125                     <artifactId>spring-context</artifactId>
126                     <groupId>org.springframework</groupId>
127                 </exclusion>
128                 <exclusion>
129                     <artifactId>spring-core</artifactId>
130                     <groupId>org.springframework</groupId>
131                 </exclusion>
132                 <exclusion>
133                     <artifactId>spring-web</artifactId>
134                     <groupId>org.springframework</groupId>
135                 </exclusion>
136                 <exclusion>
137                     <artifactId>spring-beans</artifactId>
138                     <groupId>org.springframework</groupId>
139                 </exclusion>
140             </exclusions>
141     </dependency>
142
143         <!-- json parsing -->
144 <!-- the core, which includes Streaming API, shared low-level abstractions (but NOT data-binding) -->
145  <dependency>
146    <groupId>com.fasterxml.jackson.core</groupId>
147    <artifactId>jackson-core</artifactId>
148    <version>${jackson-2-version}</version>
149  </dependency>
150
151  <!-- Just the annotations; use this dependency if you want to attach annotations
152       to classes without connecting them to the code. -->
153  <dependency>
154    <groupId>com.fasterxml.jackson.core</groupId>
155    <artifactId>jackson-annotations</artifactId>
156    <version>${jackson-2-version}</version>
157 </dependency>
158
159 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
160 <dependency>
161   <groupId>com.fasterxml.jackson.core</groupId>
162   <artifactId>jackson-databind</artifactId>
163   <version>${jackson-2-version}</version>
164 </dependency>
165
166 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
167 <dependency>
168   <groupId>com.fasterxml.jackson.dataformat</groupId>
169   <artifactId>jackson-dataformat-smile</artifactId>
170   <version>${jackson-2-version}</version>
171 </dependency>
172 <!-- JAX-RS provider -->
173 <dependency>
174    <groupId>com.fasterxml.jackson.jaxrs</groupId>
175    <artifactId>jackson-jaxrs-json-provider</artifactId>
176    <version>${jackson-2-version}</version>
177 </dependency>
178 <!-- Support for JAX-B annotations as additional configuration -->
179 <dependency>
180   <groupId>com.fasterxml.jackson.module</groupId>
181   <artifactId>jackson-module-jaxb-annotations</artifactId>
182   <version>${jackson-2-version}</version>
183 </dependency>
184     <dependency>
185         <groupId>com.owlike</groupId>
186         <artifactId>genson</artifactId>
187         <version>1.1</version>
188     </dependency>
189     <!-- dependency>
190         <groupId>org.eclipse.persistence</groupId>
191         <artifactId>javax.persistence</artifactId>
192         <version>2.0.0</version>
193     </dependency-->
194
195     <dependency>
196         <groupId>javax.servlet</groupId>
197         <artifactId>javax.servlet-api</artifactId>
198         <version>3.0.1</version>
199         <scope>provided</scope>
200     </dependency>
201    
202        <dependency>
203             <groupId>org.springframework</groupId>
204             <artifactId>spring-aop</artifactId>
205             <version>${spring.version}</version>
206         </dependency>
207         <dependency>
208             <groupId>org.springframework</groupId>
209             <artifactId>spring-context</artifactId>
210             <version>${spring.version}</version>
211         </dependency>
212         <dependency>
213             <groupId>org.springframework</groupId>
214             <artifactId>spring-core</artifactId>
215             <version>${spring.version}</version>
216         </dependency>
217         <dependency>
218             <groupId>org.springframework</groupId>
219             <artifactId>spring-orm</artifactId>
220             <version>${spring.version}</version>
221         </dependency>
222         <dependency>
223             <groupId>org.springframework</groupId>
224             <artifactId>spring-oxm</artifactId>
225             <version>${spring.version}</version>
226         </dependency>
227         <dependency>
228             <groupId>org.springframework</groupId>
229             <artifactId>spring-test</artifactId>
230             <version>${spring.version}</version>
231             <!--scope>test</scope-->
232         </dependency>
233         <dependency> 
234      <groupId>org.springframework</groupId> 
235      <artifactId>spring-aspects</artifactId> 
236      <version>${spring.version}</version> 
237         </dependency>
238         <dependency>
239             <groupId>org.aspectj</groupId>
240             <artifactId>aspectjrt</artifactId>
241             <version>1.8.1</version>
242         </dependency>
243         <dependency>
244             <groupId>org.springframework</groupId>
245             <artifactId>spring-tx</artifactId>
246             <version>${spring.version}</version>
247         </dependency>
248         <dependency>
249             <groupId>org.springframework</groupId>
250             <artifactId>spring-web</artifactId>
251             <version>${spring.version}</version>
252         </dependency>
253         <dependency>
254             <groupId>org.springframework</groupId>
255             <artifactId>spring-webmvc</artifactId>
256             <version>${spring.version}</version>
257         </dependency>
258                 <dependency>
259                         <groupId>ch.qos.logback</groupId>
260                         <artifactId>logback-core</artifactId>
261                         <version>${logback.version}</version>
262                 </dependency>
263                 <dependency>
264                         <groupId>ch.qos.logback</groupId>
265                         <artifactId>logback-classic</artifactId>
266                         <version>${logback.version}</version>
267                 </dependency>  
268     </dependencies>
269 </project>