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