diff options
author | Dominik Stadler <centic@apache.org> | 2016-11-14 19:50:39 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2016-11-14 19:50:39 +0000 |
commit | a1c9f7f7235c272c99cf345dae66b3452e60eb49 (patch) | |
tree | 6a86c90195fad02c5bc8b0e68ba496a68360062a /src | |
parent | 0480ef3722f782f5de156c06c7a37e16c2723f8c (diff) | |
download | poi-a1c9f7f7235c272c99cf345dae66b3452e60eb49.tar.gz poi-a1c9f7f7235c272c99cf345dae66b3452e60eb49.zip |
Fix missing directory 'maven' in source release packages, adjust the related test-Ant-script to call 'assemble' instead of 'jar' to catch something like this in the future.
Also exclude some more intermediate files/directories from the source package.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1769684 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/integrationtest/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/integrationtest/build.xml b/src/integrationtest/build.xml index 8409e5354d..6af90e77b5 100644 --- a/src/integrationtest/build.xml +++ b/src/integrationtest/build.xml @@ -77,7 +77,7 @@ Before running this, you should execute the "assemble" target in the main build. <!-- finally call Ant on the extracted source to check if we can build the packages --> <echo message="Building in temporary dir ${dirversion}/"/> - <ant dir="${dirversion}" target="jar" inheritAll="false" inheritRefs="false" useNativeBasedir="true"/> + <ant dir="${dirversion}" target="assemble" inheritAll="false" inheritRefs="false" useNativeBasedir="true"/> </target> <target name="runCompileTest" depends="init" description="Verify that we can compile most examples without including excelant or scratchpad jars"> |