From ef8a9d73600d9e2d178c859717bb4cf93103ac52 Mon Sep 17 00:00:00 2001 From: Lan Xia Date: Tue, 30 Jan 2024 14:55:21 -0500 Subject: [PATCH] Add hamcrest-core.jar and bcprov-jdk18on.jar in getDependencies Signed-off-by: Lan Xia --- compile.mk | 2 +- scripts/getDependencies.pl | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/compile.mk b/compile.mk index 03fcc20a..fd84d520 100644 --- a/compile.mk +++ b/compile.mk @@ -38,7 +38,7 @@ TEST_FLAG_PARAM := -DTEST_FLAG=$(TEST_FLAG) else TEST_FLAG_PARAM := endif -COMPILE_CMD=ant -f scripts$(D)build_test.xml -DTEST_ROOT=$(TEST_ROOT) -DBUILD_ROOT=$(BUILD_ROOT) -DJDK_VERSION=$(JDK_VERSION) -DJDK_IMPL=$(JDK_IMPL) -DJCL_VERSION=$(JCL_VERSION) -DBUILD_LIST=${COMPILE_BUILD_LIST} -DRESOURCES_DIR=${RESOURCES_DIR} -DSPEC=${SPEC} -DTEST_JDK_HOME=${TEST_JDK_HOME} -DJVM_VERSION=$(JVM_VERSION) -DLIB_DIR=$(LIB_DIR) ${TEST_FLAG_PARAM} +COMPILE_CMD=ant -f scripts$(D)build_test.xml -DTEST_ROOT=$(TEST_ROOT) -DBUILD_ROOT=$(BUILD_ROOT) -DJDK_VERSION=$(JDK_VERSION) -DJDK_IMPL=$(JDK_IMPL) -DJDK_VENDOR=$(JDK_VENDOR) -DJCL_VERSION=$(JCL_VERSION) -DBUILD_LIST=${COMPILE_BUILD_LIST} -DRESOURCES_DIR=${RESOURCES_DIR} -DSPEC=${SPEC} -DTEST_JDK_HOME=${TEST_JDK_HOME} -DJVM_VERSION=$(JVM_VERSION) -DLIB_DIR=$(LIB_DIR) ${TEST_FLAG_PARAM} compile: diff --git a/scripts/getDependencies.pl b/scripts/getDependencies.pl index fc250099..c8fedf0e 100644 --- a/scripts/getDependencies.pl +++ b/scripts/getDependencies.pl @@ -163,6 +163,16 @@ url => 'https://builds.shipilev.net/jcstress/jcstress-tests-all-20220908.jar', fname => 'jcstress-tests-all-20220908.jar', sha1 => '8cf348be49b8af939a3ce03216e3df53aa0f9ef2' + }, + hamcrest_core => { + url => 'https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar', + fname => 'hamcrest-core.jar', + sha1 => '42a25dc3219429f0e5d060061f71acb49bf010a0' + }, + bcprov_jdk18on => { + url => 'https://repo1.maven.org/maven2/org/bouncycastle/bcprov-jdk18on/1.77/bcprov-jdk18on-1.77.jar', + fname => 'bcprov-jdk18on.jar', + sha1 => '2cc971b6c20949c1ff98d1a4bc741ee848a09523' }); my @dependencies = split(',', $dependencyList);