mirror of https://github.com/apache/poi.git
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
This commit is contained in:
parent
d9238f2490
commit
bb202a7b37
|
@ -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,
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue