diff options
author | Dominik Stadler <centic@apache.org> | 2021-05-13 12:11:43 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2021-05-13 12:11:43 +0000 |
commit | fe753d473788fc24030d7066654c56c33fff23b5 (patch) | |
tree | a1b5b9f31c81d7a3166553842bca63628a17fbfc | |
parent | 75438f1306d64d39ffc3db461ad210165a98f338 (diff) | |
download | poi-fe753d473788fc24030d7066654c56c33fff23b5.tar.gz poi-fe753d473788fc24030d7066654c56c33fff23b5.zip |
Fix two more invalid paths for the Java 9+ compilation
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1889842 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -979,7 +979,7 @@ under the License. fork="true" modulepath="lib/ooxml" unless:true="${isJava8}"> - <compilerarg line="--patch-module org.apache.poi.ooxml.schemas=${ooxml-schema.output.dir}"/> + <compilerarg line="--patch-module org.apache.poi.ooxml.schemas=${ooxml-schema.output.dir}:${ooxml-schema.output.gen-classes.dir}"/> </javac> <mkdir dir="build/dist/maven/poi-ooxml-full"/> @@ -1275,7 +1275,7 @@ under the License. fork="true" modulepath="${basedir}/lib/main-tests" unless:true="${isJava8}"> - <compilerarg line="--patch-module org.apache.poi.ooxml_lite=${ooxml.output.test.dir}"/> + <compilerarg line="--patch-module org.apache.poi.ooxml_lite=${ooxml.output.test.dir}:${ooxml.lite.output.dir}"/> </javac> <jar destfile="${ooxml.lite.agent}"> |