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