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