<?xml version="1.0"?>12<!--3Copyright (c) 2019, 2020 IBM Corp. and others45This program and the accompanying materials are made available under6the terms of the Eclipse Public License 2.0 which accompanies this7distribution and is available at https://www.eclipse.org/legal/epl-2.0/8or the Apache License, Version 2.0 which accompanies this distribution and9is available at https://www.apache.org/licenses/LICENSE-2.0.1011This Source Code may also be made available under the following12Secondary Licenses when the conditions for such availability set13forth in the Eclipse Public License, v. 2.0 are satisfied: GNU14General Public License, version 2 with the GNU Classpath15Exception [1] and GNU General Public License, version 2 with the16OpenJDK Assembly Exception [2].1718[1] https://www.gnu.org/software/classpath/license.html19[2] http://openjdk.java.net/legal/assembly-exception.html2021SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception22-->2324<project name="TestConfig" default="build" basedir=".">25<taskdef resource="net/sf/antcontrib/antlib.xml" />26<description>27Build TestConfig28</description>2930<!-- set properties for this build -->31<property name="DEST" value="${BUILD_ROOT}/TestConfig" />3233<target name="init">34<mkdir dir="${DEST}" />35</target>3637<if>38<contains string="${SPEC}" substring="zos"/>39<then>40<property name="TEXT_ENCODING" value="IBM-1047"/>41</then>42<else>43<property name="TEXT_ENCODING" value="ISO-8859-1"/>44</else>45</if>4647<target name="build" depends="init">48<copy todir="${DEST}">49<fileset dir="." includes="**" excludes="**/*.pl"/>50</copy>51<copy todir="${DEST}" outputencoding="${TEXT_ENCODING}">52<fileset dir="." includes="**/*.pl"/>53</copy>54</target>55</project>565758