blob: acf47ea56bfad94d94cf6442be199318b99fa832 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.hop</groupId>
<artifactId>hop-assemblies-plugins-transforms</artifactId>
<version>2.0.0</version>
</parent>
<artifactId>hop-assemblies-plugins-transforms-json</artifactId>
<version>2.0.0</version>
<packaging>pom</packaging>
<name>Hop Assemblies Plugins Transforms JSON</name>
<description/>
<properties>
<commons-codec.version>1.15</commons-codec.version>
<encoder.version>1.2</encoder.version>
<guava.version>31.1-jre</guava.version>
<javax.servlet-api.version>3.0.1</javax.servlet-api.version>
<dependency.com.tinkerpop.blueprints.version>2.6.0</dependency.com.tinkerpop.blueprints.version>
<dependency.org.powermock.version>2.0.9</dependency.org.powermock.version>
<json-smart.version>2.4.8</json-smart.version>
<json-path.version>2.1.0</json-path.version>
<jackson-core.version>${jackson-databind.version}</jackson-core.version>
<jackson-databind.version>2.12.1</jackson-databind.version>
<json-simple.version>1.1.1</json-simple.version>
<jsch.version>0.1.54</jsch.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.hop</groupId>
<artifactId>hop-transforms-json</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
<version>${json-smart.version}</version>
</dependency>
<dependency>
<groupId>net.minidev</groupId>
<artifactId>accessors-smart</artifactId>
<version>${json-smart.version}</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>${json-simple.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson-core.version}</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>${json-path.version}</version>
</dependency>
</dependencies>
</project>