diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-01-22 21:34:35 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-01-22 21:34:35 +0000 |
commit | e71e6027620f832bac07607d4f066c4f76f348ac (patch) | |
tree | 1209dab676d2234c471a1a3e242adf49d5f4de58 /poi-excelant | |
parent | 1ee199b1ea8ce524d734aa5e9fa7fbe0c4a52ac0 (diff) | |
download | poi-e71e6027620f832bac07607d4f066c4f76f348ac.tar.gz poi-e71e6027620f832bac07607d4f066c4f76f348ac.zip |
revert test module changes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1897355 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-excelant')
-rw-r--r-- | poi-excelant/build.gradle | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/poi-excelant/build.gradle b/poi-excelant/build.gradle index 8e6b437ed1..a4dcedce2b 100644 --- a/poi-excelant/build.gradle +++ b/poi-excelant/build.gradle @@ -154,7 +154,7 @@ task testJar(type: Jar, dependsOn: [ testClasses, cacheTest9 ] ) { } } - from sourceSets.test.output + from sourceSets.test.output + sourceSets.main.output manifest { attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true') @@ -172,14 +172,12 @@ test { jvmArgs += [ "-javaagent:${OOXML_LITE_AGENT}=${OOXML_LITE_REPORT}|${OOXML_LITE_INCLUDES}", ] - /* if (JavaVersion.current() != JavaVersion.VERSION_1_8) { jvmArgs += [ '--add-modules', MODULE_NAME, '--module-path', '../build/dist/maven/poi-excelant-tests' + File.pathSeparator + files(TEST_MODULE_PATH).asPath, ] } - */ } } |