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
This commit is contained in:
parent
04e85b90db
commit
5ec38746a1
@ -1958,8 +1958,11 @@ under the License.
|
|||||||
<mappedresources cache="true">
|
<mappedresources cache="true">
|
||||||
<fileset dir="." excludes="build/**,
|
<fileset dir="." excludes="build/**,
|
||||||
dist*/**,
|
dist*/**,
|
||||||
maven/**,
|
|
||||||
lib/**,
|
lib/**,
|
||||||
|
bin/**,
|
||||||
|
out/**,
|
||||||
|
sonar/**/target/**,
|
||||||
|
sonar/*/src/**,
|
||||||
compile-lib/**,
|
compile-lib/**,
|
||||||
ooxml-lib/**,
|
ooxml-lib/**,
|
||||||
scripts/**,
|
scripts/**,
|
||||||
@ -1970,6 +1973,10 @@ under the License.
|
|||||||
*.lnk,
|
*.lnk,
|
||||||
*.rdf,
|
*.rdf,
|
||||||
*.swp,
|
*.swp,
|
||||||
|
*.launch,
|
||||||
|
*.log,
|
||||||
|
.gradle/**,
|
||||||
|
.idea/**,
|
||||||
.settings/**,
|
.settings/**,
|
||||||
.classpath,
|
.classpath,
|
||||||
.settings/**,
|
.settings/**,
|
||||||
|
@ -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 -->
|
<!-- finally call Ant on the extracted source to check if we can build the packages -->
|
||||||
<echo message="Building in temporary dir ${dirversion}/"/>
|
<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>
|
||||||
|
|
||||||
<target name="runCompileTest" depends="init" description="Verify that we can compile most examples without including excelant or scratchpad jars">
|
<target name="runCompileTest" depends="init" description="Verify that we can compile most examples without including excelant or scratchpad jars">
|
||||||
|
Loading…
Reference in New Issue
Block a user