]> source.dussan.org Git - poi.git/commitdiff
try to fix path issues in Windows build
authorAndreas Beeker <kiwiwings@apache.org>
Fri, 20 Aug 2021 19:46:26 +0000 (19:46 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Fri, 20 Aug 2021 19:46:26 +0000 (19:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892479 13f79535-47bb-0310-9956-ffa450edef68

poi-excelant/build.gradle
poi-integration/build.gradle
poi-scratchpad/build.gradle
poi/build.gradle

index 2a6cb1403e302c1c8a991dd2ae9acc2aa5d86c8e..d7562e554d99c8c044c09778666fcf9d35e6a916 100644 (file)
@@ -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,
             ]
         }
     }
index e5bd949ca1d4195e1fcf9be71d7aa8fe5a2cb9dc..c8556f3a502eff15a083909d31c14a99fb1d6b64 100644 (file)
@@ -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,
             ]
         }
     }
index 2e2f8219e99370074d512930416efbd7afb3bbdf..400884c8f5099b5c8ede1ed59001533cb8095b70 100644 (file)
@@ -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,
             ]
         }
     }
index 6c337e049e13e313d9bd51de624b18446e6ee1e2..ea061ff73fb5836a88dcffdf853e726e29a02826 100644 (file)
@@ -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,
             ]
         }
     }