aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2021-08-20 19:46:26 +0000
committerAndreas Beeker <kiwiwings@apache.org>2021-08-20 19:46:26 +0000
commitbb202a7b3796fbeefa64234c35a60aa01a0eadc9 (patch)
tree4e6180b5db836ae5c2793e8dfd0de79c7d4f4865
parentd9238f2490d79fcd654d410fe6625332e77af1e6 (diff)
downloadpoi-bb202a7b3796fbeefa64234c35a60aa01a0eadc9.tar.gz
poi-bb202a7b3796fbeefa64234c35a60aa01a0eadc9.zip
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
-rw-r--r--poi-excelant/build.gradle2
-rw-r--r--poi-integration/build.gradle2
-rw-r--r--poi-scratchpad/build.gradle2
-rw-r--r--poi/build.gradle2
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,
]
}
}