Skip to content

Commit

Permalink
Add getDependentLibs for smoke test (adoptium#3719)
Browse files Browse the repository at this point in the history
- Add getDependentLibs for smoke test

Signed-off-by: LongyuZhang <[email protected]>
  • Loading branch information
LongyuZhang authored Mar 20, 2024
1 parent f336111 commit f47b8ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/functional/buildAndPackage/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,15 @@
<!--Properties for this particular build-->
<property name="src" location="./src"/>
<property name="build" location="./bin"/>
<property name="LIB" value="testng"/>
<import file="${TEST_ROOT}/TKG/scripts/getDependencies.xml"/>

<target name="init">
<mkdir dir="${DEST}"/>
<mkdir dir="${build}"/>
</target>

<target name="compile" depends="init" description="Using java ${JDK_VERSION} to compile the source ">
<target name="compile" depends="init,getDependentLibs" description="Using java ${JDK_VERSION} to compile the source ">
<echo>Ant version is ${ant.version}</echo>
<echo>============COMPILER SETTINGS============</echo>
<echo>===fork: yes</echo>
Expand Down

0 comments on commit f47b8ac

Please sign in to comment.