Skip to content

Commit a3280ca

Browse files
authored
Download dependency libs for MBCS_Tests (#5643)
- Added junit, testng, jcommander libs to download for MBCS_Tests when prestage libs do not exist. related: #5569 Signed-off-by: Anna Babu Palathingal <[email protected]>
1 parent 277f44f commit a3280ca

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

functional/MBCS_Tests/datetime/build.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@ limitations under the License.
2727
<!--Properties for this particular build-->
2828
<property name="src" location="./src" />
2929
<property name="build" location="./bin" />
30+
<property name="LIB" value="junit4,testng,jcommander"/>
31+
<import file="${TEST_ROOT}/TKG/scripts/getDependencies.xml"/>
3032

3133
<target name="init">
3234
<mkdir dir="${DEST}" />
3335
<mkdir dir="${build}" />
3436
</target>
3537

36-
<target name="compile" depends="init" description="Using java${JDK_VERSION} to compile the source ">
38+
<target name="compile" depends="init,getDependentLibs" description="Using java${JDK_VERSION} to compile the source ">
3739
<echo>Ant version is ${ant.version}</echo>
3840
<echo>============COMPILER SETTINGS============</echo>
3941
<echo>===fork: yes</echo>

functional/MBCS_Tests/language_tag/build.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@ limitations under the License.
2727
<!--Properties for this particular build-->
2828
<property name="src" location="./src" />
2929
<property name="build" location="./bin" />
30+
<property name="LIB" value="junit4,testng,jcommander"/>
31+
<import file="${TEST_ROOT}/TKG/scripts/getDependencies.xml"/>
3032

3133
<target name="init">
3234
<mkdir dir="${DEST}" />
3335
<mkdir dir="${build}" />
3436
</target>
3537

36-
<target name="compile" depends="init" description="Using ${JAVA_VERSION} java compile the source ">
38+
<target name="compile" depends="init,getDependentLibs" description="Using ${JAVA_VERSION} java compile the source ">
3739
<echo>Ant version is ${ant.version}</echo>
3840
<echo>============COMPILER SETTINGS============</echo>
3941
<echo>===fork: yes</echo>

functional/MBCS_Tests/property_utf8/build.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@ limitations under the License.
2727
<!--Properties for this particular build-->
2828
<property name="src" location="./src" />
2929
<property name="build" location="./bin" />
30+
<property name="LIB" value="junit4,testng,jcommander"/>
31+
<import file="${TEST_ROOT}/TKG/scripts/getDependencies.xml"/>
3032

3133
<target name="init">
3234
<mkdir dir="${DEST}" />
3335
<mkdir dir="${build}" />
3436
</target>
3537

36-
<target name="compile" depends="init" description="Using ${JAVA_VERSION} java compile the source ">
38+
<target name="compile" depends="init,getDependentLibs" description="Using ${JAVA_VERSION} java compile the source ">
3739
<echo>Ant version is ${ant.version}</echo>
3840
<echo>============COMPILER SETTINGS============</echo>
3941
<echo>===fork: yes</echo>

0 commit comments

Comments
 (0)