Compare commits

...

10 Commits

Author SHA1 Message Date
wwang-talend
a1d119c38f Merge remote-tracking branch 'origin/dshekera/TDI-42230_TDI_26493_tFileCopy_LargerFile_failed_java11' into wwang-talend/TDI-42230 2019-06-13 23:08:35 +08:00
wwang-talend
05e458221b build the jar in java 8 level, and make it can works in java 8 and 11
runtime env, and do a test and debug(make sure the code is executed like
expected), it can work
2019-06-13 23:05:02 +08:00
dmytroshekera
c89d0b985c bugfix(TDI-42230): tFileCopy_LargerFile failed on java11.
Change ANT -> maven done so remove old build scripts
2019-06-13 11:18:39 +03:00
dmytroshekera
dc3bbc0c23 bugfix(TDI-42230): tFileCopy_LargerFile failed on java11.
Change ANT -> maven done so remove old build scripts
2019-06-13 10:37:16 +03:00
dmytroshekera
df7206e12f bugfix(TDI-42230): tFileCopy_LargerFile failed on java11 2019-06-12 19:22:01 +03:00
dmytroshekera
e219e52608 bugfix(TDI-42230): tFileCopy_LargerFile failed on java11 2019-06-12 18:12:14 +03:00
dmytroshekera
dad22ceb60 bugfix(TDI-42230): tFileCopy_LargerFile failed on java11 2019-06-12 17:31:31 +03:00
dmytroshekera
18bbbee3bf bugfix(TDI-42230): tFileCopy_LargerFile failed on java11 2019-06-12 17:20:02 +03:00
dmytroshekera
82c2e7b220 bugfix(TDI-42230): tFileCopy_LargerFile failed on java11 2019-06-12 16:36:46 +03:00
dmytroshekera
84f16b1261 fix(TDI-42230):Bug_TDI_26493_tFileCopy_LargerFile failed java 11
* move build from ant to maven
2019-05-13 18:39:21 +03:00
8 changed files with 430 additions and 285 deletions

View File

@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="org.talend.designer.components.libs" default="buildall" basedir=".">
<target name="buildall">
<ant antfile="filecopy/build.xml" target="process" inheritall="no" />
<ant antfile="talend_file_enhanced_20070724/build.xml" target="process" inheritall="no" />
<ant antfile="sugarCRMManagement/build.xml" target="process" inheritall="no" />
<ant antfile="TalendSAX/build.xml" target="process" inheritall="no" />
</target>
<?xml version="1.0" encoding="UTF-8"?>
<project name="org.talend.designer.components.libs" default="buildall" basedir=".">
<target name="buildall">
<ant antfile="talend_file_enhanced_20070724/build.xml" target="process" inheritall="no" />
<ant antfile="sugarCRMManagement/build.xml" target="process" inheritall="no" />
<ant antfile="TalendSAX/build.xml" target="process" inheritall="no" />
</target>
</project>

View File

@@ -1,88 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="org.talend.designer.components.libs" default="process" basedir=".">
<property name="component.plugin.home" value="../../../org.talend.designer.components.localprovider/components" />
<!-- #################################################### -->
<!-- modification 1: config -->
<property name="jar.name" value="filecopy.jar" />
<property name="component.name" value="tFileCopy" />
<property name="author.name" value="wyang" />
<!-- modification 2: compile classpath -->
<path id="compile.classpath">
</path>
<!-- #################################################### -->
<!-- sourcecode and final jar path -->
<property name="source.home" value="." />
<property name="jar.home" value="${component.plugin.home}/${component.name}/${jar.name}" />
<!-- temp dir for clasee files -->
<property name="build.dir" value="../../build" />
<!-- compile option -->
<property name="compile.debug" value="true" />
<property name="compile.deprecation" value="false" />
<property name="compile.optimize" value="true" />
<target name="process" description="prepare a temp dir">
<antcall target="prepare" />
<antcall target="compile" />
<antcall target="clean" />
</target>
<target name="prepare" description="prepare a temp dir">
<delete dir="${build.dir}" />
<mkdir dir="${build.dir}" />
<mkdir dir="${build.dir}/classes" />
</target>
<target name="compile" description="Compile Java sources">
<!-- compile -->
<javac srcdir="${source.home}" destdir="${build.dir}/classes" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}">
<classpath refid="compile.classpath" />
</javac>
<!-- include source code -->
<copy todir="${build.dir}/classes">
<fileset dir="${source.home}">
<exclude name="build.xml" />
</fileset>
</copy>
<!-- make jar -->
<tstamp>
<format property="date" pattern="yyyy-MM-dd HH:mm:ss" />
</tstamp>
<jar destfile="${build.dir}/${jar.name}" basedir="${build.dir}/classes">
<manifest>
<!-- who -->
<attribute name="Built-By" value="${author.name}" />
<!-- when -->
<attribute name="Built-Date" value="${date}"/>
<!-- JDK version -->
<attribute name="Created-By" value="${java.version} (${java.vendor})" />
<!-- Information about the program itself -->
<attribute name="Implementation-Vendor" value="Talend SA" />
<attribute name="Implementation-Title" value="${jar.name}" />
<attribute name="Implementation-Version" value="1.0" />
</manifest>
</jar>
<!-- move jar -->
<move file="${build.dir}/${jar.name}" tofile="${jar.home}" />
</target>
<target name="clean" description="clean the temp dir">
<delete dir="${build.dir}" />
<mkdir dir="${build.dir}" />
</target>
</project>

View File

@@ -0,0 +1,47 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.talend.filecopy</groupId>
<artifactId>filecopy</artifactId>
<packaging>jar</packaging>
<version>1.0.1-201906121650</version>
<name>fileCopy</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<talend.nexus.url>https://artifacts-oss.talend.com</talend.nexus.url>
</properties>
<prerequisites>
<maven>3.0.1</maven>
</prerequisites>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>talend_nexus_deployment</id>
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceSnapshot/</url>
</snapshotRepository>
<repository>
<id>talend_nexus_deployment</id>
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceRelease/</url>
</repository>
</distributionManagement>
</project>

View File

@@ -0,0 +1,177 @@
package org.talend;
import java.io.IOException;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.nio.ByteBuffer;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Objects;
import static java.lang.invoke.MethodHandles.constant;
import static java.lang.invoke.MethodHandles.dropArguments;
import static java.lang.invoke.MethodHandles.filterReturnValue;
import static java.lang.invoke.MethodHandles.guardWithTest;
import static java.lang.invoke.MethodType.methodType;
/**
* sun.misc.Cleaner has moved in OpenJDK 9 and
* sun.misc.Unsafe#invokeCleaner(ByteBuffer) is the replacement.
* This class is a hack to use sun.misc.Cleaner in Java 8 and
* use the replacement in Java 9+.
* This implementation is inspired by hadoop which from LUCENE-6989.
*/
public final class CleanerUtil {
// Prevent instantiation
private CleanerUtil(){}
/**
* <code>true</code>, if this platform supports unmapping mmapped files.
*/
public static final boolean UNMAP_SUPPORTED;
/**
* if {@link #UNMAP_SUPPORTED} is {@code false}, this contains the reason
* why unmapping is not supported.
*/
public static final String UNMAP_NOT_SUPPORTED_REASON;
private static final BufferCleaner CLEANER;
/**
* Reference to a BufferCleaner that does unmapping.
* @return {@code null} if not supported.
*/
public static BufferCleaner getCleaner() {
return CLEANER;
}
static {
final Object hack = AccessController.doPrivileged(
(PrivilegedAction<Object>) CleanerUtil::unmapHackImpl);
if (hack instanceof BufferCleaner) {
CLEANER = (BufferCleaner) hack;
UNMAP_SUPPORTED = true;
UNMAP_NOT_SUPPORTED_REASON = null;
} else {
CLEANER = null;
UNMAP_SUPPORTED = false;
UNMAP_NOT_SUPPORTED_REASON = hack.toString();
}
}
private static Object unmapHackImpl() {
final MethodHandles.Lookup lookup = MethodHandles.lookup();
try {
try {
// *** sun.misc.Unsafe unmapping (Java 9+) ***
final Class<?> unsafeClass = Class.forName("sun.misc.Unsafe");
// first check if Unsafe has the right method, otherwise we can
// give up without doing any security critical stuff:
final MethodHandle unmapper = lookup.findVirtual(unsafeClass,
"invokeCleaner", methodType(void.class, ByteBuffer.class));
// fetch the unsafe instance and bind it to the virtual MH:
final Field f = unsafeClass.getDeclaredField("theUnsafe");
f.setAccessible(true);
final Object theUnsafe = f.get(null);
return newBufferCleaner(ByteBuffer.class, unmapper.bindTo(theUnsafe));
} catch (SecurityException se) {
// rethrow to report errors correctly (we need to catch it here,
// as we also catch RuntimeException below!):
throw se;
} catch (ReflectiveOperationException | RuntimeException e) {
// *** sun.misc.Cleaner unmapping (Java 8) ***
final Class<?> directBufferClass =
Class.forName("java.nio.DirectByteBuffer");
final Method m = directBufferClass.getMethod("cleaner");
m.setAccessible(true);
final MethodHandle directBufferCleanerMethod = lookup.unreflect(m);
final Class<?> cleanerClass =
directBufferCleanerMethod.type().returnType();
/*
* "Compile" a MethodHandle that basically is equivalent
* to the following code:
*
* void unmapper(ByteBuffer byteBuffer) {
* sun.misc.Cleaner cleaner =
* ((java.nio.DirectByteBuffer) byteBuffer).cleaner();
* if (Objects.nonNull(cleaner)) {
* cleaner.clean();
* } else {
* // the noop is needed because MethodHandles#guardWithTest
* // always needs ELSE
* noop(cleaner);
* }
* }
*/
final MethodHandle cleanMethod = lookup.findVirtual(
cleanerClass, "clean", methodType(void.class));
final MethodHandle nonNullTest = lookup.findStatic(Objects.class,
"nonNull", methodType(boolean.class, Object.class))
.asType(methodType(boolean.class, cleanerClass));
final MethodHandle noop = dropArguments(
constant(Void.class, null).asType(methodType(void.class)),
0, cleanerClass);
final MethodHandle unmapper = filterReturnValue(
directBufferCleanerMethod,
guardWithTest(nonNullTest, cleanMethod, noop))
.asType(methodType(void.class, ByteBuffer.class));
return newBufferCleaner(directBufferClass, unmapper);
}
} catch (SecurityException se) {
return "Unmapping is not supported, because not all required " +
"permissions are given to the JAR file: " + se +
" [Please grant at least the following permissions: " +
"RuntimePermission(\"accessClassInPackage.sun.misc\") " +
" and ReflectPermission(\"suppressAccessChecks\")]";
} catch (ReflectiveOperationException | RuntimeException e) {
return "Unmapping is not supported on this platform, " +
"because internal Java APIs are not compatible with " +
"this version: " + e;
}
}
private static BufferCleaner newBufferCleaner(
final Class<?> unmappableBufferClass, final MethodHandle unmapper) {
assert Objects.equals(
methodType(void.class, ByteBuffer.class), unmapper.type());
return buffer -> {
if (!buffer.isDirect()) {
throw new IllegalArgumentException(
"unmapping only works with direct buffers");
}
if (!unmappableBufferClass.isInstance(buffer)) {
throw new IllegalArgumentException("buffer is not an instance of " +
unmappableBufferClass.getName());
}
final Throwable error = AccessController.doPrivileged(
(PrivilegedAction<Throwable>) () -> {
try {
unmapper.invokeExact(buffer);
return null;
} catch (Throwable t) {
return t;
}
});
if (error != null) {
throw new IOException("Unable to unmap the mapped buffer", error);
}
};
}
/**
* Pass in an implementation of this interface to cleanup ByteBuffers.
* CleanerUtil implements this to allow unmapping of bytebuffers
* with private Java APIs.
*/
@FunctionalInterface
public interface BufferCleaner {
void freeBuffer(ByteBuffer b) throws IOException;
}
}

View File

@@ -1,6 +1,6 @@
// ============================================================================
//
// Copyright (C) 2006-2018 Talend Inc. - www.talend.com
// Copyright (C) 2006-2019 Talend Inc. - www.talend.com
//
// This source code is available under agreement available at
// %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt
@@ -16,11 +16,9 @@ import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.lang.reflect.Method;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.security.AccessController;
import java.security.PrivilegedAction;
/**
* DOC Administrator class global comment. Detailled comment
@@ -100,7 +98,7 @@ public class FileCopy {
try {
in = srcInputStream.getChannel();
out = new FileOutputStream(dest).getChannel();
int maxCount = (32 * 1024 * 1024) - (28 * 1024);
long size = in.size();
long position = 0;
@@ -171,20 +169,16 @@ public class FileCopy {
}
@SuppressWarnings("unchecked")
private static void clean(final Object buffer) throws Exception {
AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
try {
Method getCleanerMethod = buffer.getClass().getMethod("cleaner", new Class[0]);
getCleanerMethod.setAccessible(true);
sun.misc.Cleaner cleaner = (sun.misc.Cleaner) getCleanerMethod.invoke(buffer, new Object[0]);
cleaner.clean();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
});
private static void clean(final ByteBuffer buffer) throws Exception {
if(CleanerUtil.getCleaner() == null) {
//this should never happen, so out like this only
System.out.println("failed to get the cleaner");
return;
}
CleanerUtil.getCleaner().freeBuffer(buffer);
}
public static void main(String[] args) throws Exception {
FileCopy.copyFile("/Users/wangwei/Documents/log.csv", "/Users/wangwei/Documents/log123.csv", false);
}
}

View File

@@ -143,7 +143,7 @@
<CODEGENERATION>
<IMPORTS>
<IMPORT NAME="filecopy" MODULE="filecopy.jar" MVN="mvn:org.talend.libraries/filecopy/6.0.0" REQUIRED="true" />
<IMPORT NAME="filecopy" MODULE="filecopy-1.0.1-201906121650.jar" MVN="mvn:org.talend.filecopy/filecopy-1.0.1-201906121650.jar" REQUIRED="true" />
</IMPORTS>
</CODEGENERATION>

View File

@@ -1,166 +1,182 @@
<?xml version="1.0" encoding="UTF-8"?>
<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.talend.studio</groupId>
<artifactId>tdi-studio-se</artifactId>
<version>7.2.1-SNAPSHOT</version>
<relativePath>../../../</relativePath>
</parent>
<artifactId>org.talend.designer.components.localprovider</artifactId>
<packaging>eclipse-plugin</packaging>
<properties>
<bulkload.dir>${project.basedir}/components/tMDMBulkLoad</bulkload.dir>
<soap.dir>${project.basedir}/components/tSOAP</soap.dir>
<webservice.dir>${project.basedir}/components/tWebServiceInput</webservice.dir>
<webservicecore.dir>${project.basedir}/components/tWebService</webservicecore.dir>
<thashfile.dir>${project.basedir}/components/tHashInput</thashfile.dir>
<thashfile.version>3.0-20170711</thashfile.version>
<ftpProxy.dir>${project.basedir}/components/tFTPConnection</ftpProxy.dir>
<ftpProxy.version>3.6.1-talend-20190128</ftpProxy.version>
<talendMQRFH2.dir>${project.basedir}/components/tMomInput</talendMQRFH2.dir>
<talendMQRFH2.version>1.0.1-20190206</talendMQRFH2.version>
<talendMQConnectionUtil.dir>${project.basedir}/components/tMomConnection</talendMQConnectionUtil.dir>
<talendMQConnectionUtil.version>1.0.1-20190215</talendMQConnectionUtil.version>
<tldapinput.dir>${project.basedir}/components/tLDAPInput</tldapinput.dir>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<filesets>
<fileset>
<directory>${soap.dir}</directory>
<includes>
<include>talend-soap*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${webservice.dir}</directory>
<includes>
<include>talend-webservice-input*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${thashfile.dir}</directory>
<includes>
<include>thashfile*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${webservicecore.dir}</directory>
<includes>
<include>talend-ws*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${talendMQRFH2.dir}</directory>
<includes>
<include>talendMQRFH2*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${talendMQConnectionUtil.dir}</directory>
<includes>
<include>talendMQConnectionUtil*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${tldapinput.dir}</directory>
<includes>
<include>talendssl*.jar</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-jars</id>
<phase>generate-sources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>talend-soap</artifactId>
<version>2.0-20160927</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${soap.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>talend-webservice-input</artifactId>
<version>1.0.0-20170301</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${webservice.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>talend-ws</artifactId>
<version>1.0.1-20190204</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${webservicecore.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>thashfile</artifactId>
<version>${thashfile.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${thashfile.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>commons-net-ftps-proxy</artifactId>
<version>${ftpProxy.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${ftpProxy.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend</groupId>
<artifactId>talendMQRFH2</artifactId>
<version>${talendMQRFH2.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${talendMQRFH2.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend</groupId>
<artifactId>talendMQConnectionUtil</artifactId>
<version>${talendMQConnectionUtil.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${talendMQConnectionUtil.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>talendssl</artifactId>
<version>1.0-20190118</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${tldapinput.dir}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<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.talend.studio</groupId>
<artifactId>tdi-studio-se</artifactId>
<version>7.2.1-SNAPSHOT</version>
<relativePath>../../../</relativePath>
</parent>
<artifactId>org.talend.designer.components.localprovider</artifactId>
<packaging>eclipse-plugin</packaging>
<properties>
<bulkload.dir>${project.basedir}/components/tMDMBulkLoad</bulkload.dir>
<soap.dir>${project.basedir}/components/tSOAP</soap.dir>
<webservice.dir>${project.basedir}/components/tWebServiceInput</webservice.dir>
<webservicecore.dir>${project.basedir}/components/tWebService</webservicecore.dir>
<thashfile.dir>${project.basedir}/components/tHashInput</thashfile.dir>
<thashfile.version>3.0-20170711</thashfile.version>
<ftpProxy.dir>${project.basedir}/components/tFTPConnection</ftpProxy.dir>
<ftpProxy.version>3.6.1-talend-20190128</ftpProxy.version>
<talendMQRFH2.dir>${project.basedir}/components/tMomInput</talendMQRFH2.dir>
<talendMQRFH2.version>1.0.1-20190206</talendMQRFH2.version>
<talendMQConnectionUtil.dir>${project.basedir}/components/tMomConnection</talendMQConnectionUtil.dir>
<talendMQConnectionUtil.version>1.0.1-20190215</talendMQConnectionUtil.version>
<tldapinput.dir>${project.basedir}/components/tLDAPInput</tldapinput.dir>
<tfilecopy.dir>${project.basedir}/components/tFileCopy</tfilecopy.dir>
<tfilecopy.version>1.0.1-201906121650</tfilecopy.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<filesets>
<fileset>
<directory>${soap.dir}</directory>
<includes>
<include>talend-soap*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${webservice.dir}</directory>
<includes>
<include>talend-webservice-input*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${thashfile.dir}</directory>
<includes>
<include>thashfile*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${webservicecore.dir}</directory>
<includes>
<include>talend-ws*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${talendMQRFH2.dir}</directory>
<includes>
<include>talendMQRFH2*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${talendMQConnectionUtil.dir}</directory>
<includes>
<include>talendMQConnectionUtil*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${tldapinput.dir}</directory>
<includes>
<include>talendssl*.jar</include>
</includes>
</fileset>
<fileset>
<directory>${tfilecopy.dir}</directory>
<includes>
<include>filecopy*.jar</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-jars</id>
<phase>generate-sources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>talend-soap</artifactId>
<version>2.0-20160927</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${soap.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>talend-webservice-input</artifactId>
<version>1.0.0-20170301</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${webservice.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>talend-ws</artifactId>
<version>1.0.1-20190204</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${webservicecore.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>thashfile</artifactId>
<version>${thashfile.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${thashfile.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>commons-net-ftps-proxy</artifactId>
<version>${ftpProxy.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${ftpProxy.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend</groupId>
<artifactId>talendMQRFH2</artifactId>
<version>${talendMQRFH2.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${talendMQRFH2.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend</groupId>
<artifactId>talendMQConnectionUtil</artifactId>
<version>${talendMQConnectionUtil.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${talendMQConnectionUtil.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.libraries</groupId>
<artifactId>talendssl</artifactId>
<version>1.0-20190118</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${tldapinput.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.talend.filecopy</groupId>
<artifactId>filecopy</artifactId>
<version>${tfilecopy.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${tfilecopy.dir}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>