aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorYegor Kozlov <yegor@apache.org>2009-11-24 09:10:49 +0000
committerYegor Kozlov <yegor@apache.org>2009-11-24 09:10:49 +0000
commit03443502f5a8b8df7bcdc41cfc7480199c3eb4f2 (patch)
tree71e6d79de52174ddb4b01bd326c09bedf201c636 /build.xml
parentb7aa4bea9a9c5f30a611ccfcb40a999b649ed9ff (diff)
downloadpoi-03443502f5a8b8df7bcdc41cfc7480199c3eb4f2.tar.gz
poi-03443502f5a8b8df7bcdc41cfc7480199c3eb4f2.zip
more cleanup of build.xml, improved release procedure, added a script to create .md5 and .asc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@883629 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml19
1 files changed, 12 insertions, 7 deletions
diff --git a/build.xml b/build.xml
index f62942ccde..fc365039b1 100644
--- a/build.xml
+++ b/build.xml
@@ -844,6 +844,13 @@ under the License.
</replacetokens>
</filterchain>
</copy>
+ <copy file="maven/poi-examples.pom" tofile="${dist.dir}/poi-examples-${version.id}.pom">
+ <filterchain>
+ <replacetokens>
+ <token key="VERSION" value="${version.id}"/>
+ </replacetokens>
+ </filterchain>
+ </copy>
<copy file="maven/poi-ooxml-schemas.pom" tofile="${dist.dir}/poi-ooxml-schemas-${version.id}.pom">
<filterchain>
<replacetokens>
@@ -1011,17 +1018,15 @@ under the License.
<patternset refid="src.dist.patterns"/>
</tarfileset>
</tar>
-
+
+ <!-- script to create signatures and hashes -->
+ <copy file="maven/multisign.sh" todir="${dist.dir}"/>
+
<echo>Creating Maven POMs</echo>
<antcall target="maven-poms"/>
- <echo>Generating MD5 Checksums</echo>
-
- <checksum fileext=".md5">
- <fileset dir="${dist.dir}" includes="*.pom,*.gz,*.zip"/>
- </checksum>
-
<echo>Distribution located in ${dist.dir}</echo>
+ <echo>Use ${dist.dir}/multisign.sh to create md5 checksums and GPG signatures</echo>
</target>
<target name="dist" depends="clean, compile-all, test-all, site, jar, assemble"