updated current version on status.xml, also some misc post-release improvements in mvn-deploy.sh and build.xml

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@887930 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2009-12-07 14:20:10 +00:00
parent 3246c57b68
commit 5984c5d57c
3 changed files with 11 additions and 9 deletions

View File

@ -914,27 +914,27 @@ under the License.
</target> </target>
<target name="jar-src" description="Sources for Maven"> <target name="jar-src" description="Sources for Maven">
<jar destfile="${dist.dir}/${jar.name}-${version.id}-sources.jar" <jar destfile="${dist.dir}/${jar.name}-${version.id}-sources-${DSTAMP}.jar"
manifest="build/poi-manifest.mf"> manifest="build/poi-manifest.mf">
<fileset dir="${main.src}"/> <fileset dir="${main.src}"/>
<metainf dir="legal/"/> <metainf dir="legal/"/>
</jar> </jar>
<jar destfile="${dist.dir}/${jar.name}-scratchpad-${version.id}-sources.jar" <jar destfile="${dist.dir}/${jar.name}-scratchpad-${version.id}-sources-${DSTAMP}.jar"
manifest="build/poi-manifest.mf"> manifest="build/poi-manifest.mf">
<fileset dir="${scratchpad.src}"/> <fileset dir="${scratchpad.src}"/>
<metainf dir="legal/"/> <metainf dir="legal/"/>
</jar> </jar>
<jar destfile="${dist.dir}/${jar.name}-contrib-${version.id}-sources.jar" <jar destfile="${dist.dir}/${jar.name}-contrib-${version.id}-sources-${DSTAMP}.jar"
manifest="build/poi-manifest.mf"> manifest="build/poi-manifest.mf">
<fileset dir="${contrib.src}"/> <fileset dir="${contrib.src}"/>
<metainf dir="legal/"/> <metainf dir="legal/"/>
</jar> </jar>
<jar destfile="${dist.dir}/${jar.name}-ooxml-${version.id}-sources.jar" <jar destfile="${dist.dir}/${jar.name}-ooxml-${version.id}-sources-${DSTAMP}.jar"
manifest="build/poi-manifest.mf"> manifest="build/poi-manifest.mf">
<fileset dir="${ooxml.src}"/> <fileset dir="${ooxml.src}"/>
<metainf dir="legal/"/> <metainf dir="legal/"/>
</jar> </jar>
<jar destfile="${dist.dir}/${jar.name}-examples-${version.id}-sources.jar" <jar destfile="${dist.dir}/${jar.name}-examples-${version.id}-sources-${DSTAMP}.jar"
manifest="build/poi-manifest.mf"> manifest="build/poi-manifest.mf">
<fileset dir="${examples.src}"/> <fileset dir="${examples.src}"/>
<metainf dir="legal/"/> <metainf dir="legal/"/>

View File

@ -54,10 +54,10 @@ do
#The maven sign-and-deploy-file command does NOT sign POM files, so we have to upload the POM's .asc manually #The maven sign-and-deploy-file command does NOT sign POM files, so we have to upload the POM's .asc manually
scp $artifactId-$VERSION.pom.asc $M2_SCP/org/apache/poi/$artifactId/$VERSION/ scp $artifactId-$VERSION.pom.asc $M2_SCP/org/apache/poi/$artifactId/$VERSION/
if [ -r $artifactId-$VERSION-sources.jar ]; then if [ -r $artifactId-$VERSION-sources-$DSTAMP.jar ]; then
mvn deploy:deploy-file -DrepositoryId=apache-releases -P apache-releases \ mvn deploy:deploy-file -DrepositoryId=apache-releases -P apache-releases \
-Durl=$M2_REPOSITORY -DgeneratePom=false -Dpackaging=java-source \ -Durl=$M2_REPOSITORY -DgeneratePom=false -Dpackaging=java-source \
-Dfile=$artifactId-$VERSION-sources.jar -DpomFile=$artifactId-$VERSION.pom -Dfile=$artifactId-$VERSION-sources-$DSTAMP.jar -DpomFile=$artifactId-$VERSION.pom
scp $artifactId-$VERSION-sources.jar.asc $M2_SCP/org/apache/poi/$artifactId/$VERSION/ scp $artifactId-$VERSION-sources-$DSTAMP.jar.asc $M2_SCP/org/apache/poi/$artifactId/$VERSION/$artifactId-$VERSION-sources.jar.asc
fi fi
done done

View File

@ -33,7 +33,9 @@
</developers> </developers>
<changes> <changes>
<release version="3.6-beta1" date="2009-??-??"> <release version="3.7-SNAPSHOT" date="2010-??-??">
</release>
<release version="3.6" date="2009-12-14">
<action dev="POI-DEVELOPERS" type="fix">48332 - fixed XSSFSheet autoSizeColumn() to tolerate empty RichTextString</action> <action dev="POI-DEVELOPERS" type="fix">48332 - fixed XSSFSheet autoSizeColumn() to tolerate empty RichTextString</action>
<action dev="POI-DEVELOPERS" type="fix">48332 - fixed ColumnInfoRecord to tolerate missing reserved field</action> <action dev="POI-DEVELOPERS" type="fix">48332 - fixed ColumnInfoRecord to tolerate missing reserved field</action>
<action dev="POI-DEVELOPERS" type="fix">47701 - fixed RecordFormatException when reading list subrecords (LbsDataSubRecord)</action> <action dev="POI-DEVELOPERS" type="fix">47701 - fixed RecordFormatException when reading list subrecords (LbsDataSubRecord)</action>