3ba7f3b9ca70c4c1983577e3dbafd1e06a8c7a2f
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-server / pom.xml
1 <?xml version="1.0"?>
2 <!--
3     Copyright (c) 2017 ZTE Corporation.
4     All rights reserved. This program and the accompanying materials
5     are made available under the terms of the Eclipse Public License v1.0
6     and the Apache License 2.0 which both accompany this distribution,
7     and are available at http://www.eclipse.org/legal/epl-v10.html
8     and http://www.apache.org/licenses/LICENSE-2.0
9
10     Contributors:
11         ZTE - initial API and implementation and/or initial documentation
12 -->
13 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15
16     <parent>
17         <groupId>org.onap.sdc.sdc-workflow-designer</groupId>
18         <artifactId>sdc-workflow-designer</artifactId>
19         <version>1.0.0-SNAPSHOT</version>
20     </parent>
21
22     <modelVersion>4.0.0</modelVersion>
23     <groupId>org.onap.sdc.sdc-workflow-designer</groupId>
24     <artifactId>sdc-workflow-designer-server</artifactId>
25     <name>sdc-workflow-designer-server</name>
26     <version>1.0.0-SNAPSHOT</version>
27     <packaging>jar</packaging>
28     <properties>
29         <slf4j.version>1.7.25</slf4j.version>
30         <jackson.version>2.9.1</jackson.version>
31         <velocity.version>1.6.2</velocity.version>
32     </properties>
33     <dependencies>
34         <dependency>
35             <groupId>org.slf4j</groupId>
36             <artifactId>slf4j-api</artifactId>
37             <version>${slf4j.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>com.fasterxml.jackson.core</groupId>
41             <artifactId>jackson-core</artifactId>
42             <version>${jackson.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>com.fasterxml.jackson.core</groupId>
46             <artifactId>jackson-databind</artifactId>
47             <version>${jackson.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.apache.velocity</groupId>
51             <artifactId>velocity</artifactId>
52             <version>${velocity.version}</version>
53         </dependency>
54     </dependencies>
55 </project>