aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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,
]
}
}