From bb202a7b3796fbeefa64234c35a60aa01a0eadc9 Mon Sep 17 00:00:00 2001 From: Andreas Beeker Date: Fri, 20 Aug 2021 19:46:26 +0000 Subject: [PATCH] try to fix path issues in Windows build git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892479 13f79535-47bb-0310-9956-ffa450edef68 --- poi-excelant/build.gradle | 2 +- poi-integration/build.gradle | 2 +- poi-scratchpad/build.gradle | 2 +- poi/build.gradle | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/poi-excelant/build.gradle b/poi-excelant/build.gradle index 2a6cb1403e..d7562e554d 100644 --- a/poi-excelant/build.gradle +++ b/poi-excelant/build.gradle @@ -154,7 +154,7 @@ test { if (JavaVersion.current() != JavaVersion.VERSION_1_8) { jvmArgs += [ '--add-modules', MODULE_NAME, - '--module-path', '../build/dist/maven/poi-excelant-tests:' + files(TEST_MODULE_PATH).asPath, + '--module-path', '../build/dist/maven/poi-excelant-tests' + File.pathSeparator + files(TEST_MODULE_PATH).asPath, ] } } diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle index e5bd949ca1..c8556f3a50 100644 --- a/poi-integration/build.gradle +++ b/poi-integration/build.gradle @@ -135,7 +135,7 @@ test { if (JavaVersion.current() != JavaVersion.VERSION_1_8) { jvmArgs += [ '--add-modules', MODULE_NAME, - '--module-path', '../build/dist/maven/poi-integration-tests:' + files(TEST_MODULE_PATH).asPath, + '--module-path', '../build/dist/maven/poi-integration-tests' + File.pathSeparator + files(TEST_MODULE_PATH).asPath, ] } } diff --git a/poi-scratchpad/build.gradle b/poi-scratchpad/build.gradle index 2e2f8219e9..400884c8f5 100644 --- a/poi-scratchpad/build.gradle +++ b/poi-scratchpad/build.gradle @@ -156,7 +156,7 @@ test { if (JavaVersion.current() != JavaVersion.VERSION_1_8) { jvmArgs += [ '--add-modules', MODULE_NAME, - '--module-path', '../build/dist/maven/poi-scratchpad-tests:' + files(TEST_MODULE_PATH).asPath, + '--module-path', '../build/dist/maven/poi-scratchpad-tests' + File.pathSeparator + files(TEST_MODULE_PATH).asPath, ] } } diff --git a/poi/build.gradle b/poi/build.gradle index 6c337e049e..ea061ff73f 100644 --- a/poi/build.gradle +++ b/poi/build.gradle @@ -160,7 +160,7 @@ test { if (JavaVersion.current() != JavaVersion.VERSION_1_8) { jvmArgs << [ '--add-modules', MODULE_NAME, - '--module-path', '../build/dist/maven/poi-tests:' + files(MODULE_PATH).asPath, + '--module-path', '../build/dist/maven/poi-tests' + File.pathSeparator + files(MODULE_PATH).asPath, ] } }