| <?xml version="1.0"?> |
| <!-- |
| Copyright (c) 2017 ZTE Corporation. |
| All rights reserved. This program and the accompanying materials |
| are made available under the terms of the Eclipse Public License v1.0 |
| and the Apache License 2.0 which both accompany this distribution, |
| and are available at http://www.eclipse.org/legal/epl-v10.html |
| and http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Contributors: |
| ZTE - initial API and implementation and/or initial documentation |
| --> |
| <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"> |
| |
| <parent> |
| <groupId>org.onap.sdc.sdc-workflow-designer</groupId> |
| <artifactId>sdc-workflow-designer</artifactId> |
| <version>1.0.0</version> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.onap.sdc.sdc-workflow-designer</groupId> |
| <artifactId>sdc-workflow-designer-server</artifactId> |
| <name>sdc-workflow-designer-server</name> |
| <version>1.0.0</version> |
| <packaging>jar</packaging> |
| <properties> |
| <slf4j.version>1.7.25</slf4j.version> |
| <jackson.version>2.9.1</jackson.version> |
| <velocity.version>1.6.2</velocity.version> |
| <junit.version>4.10</junit.version> |
| <logback.version>1.1.3</logback.version> |
| <logback-classic.version>1.1.3</logback-classic.version> |
| </properties> |
| <dependencies> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-core</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-databind</artifactId> |
| <version>${jackson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.velocity</groupId> |
| <artifactId>velocity</artifactId> |
| <version>${velocity.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>${junit.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-core</artifactId> |
| <version>${logback.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>${logback-classic.version}</version> |
| </dependency> |
| </dependencies> |
| </project> |