summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2021-12-05 17:34:58 +0000
committerDominik Stadler <centic@apache.org>2021-12-05 17:34:58 +0000
commita60f552c5908dfaad31cfc0db6ef82690dcd5b96 (patch)
tree3d15e516947897ec26ee5fe583fe68b94384d27c /build.xml
parent1e9efb5562517c657293e49d57654f3bd55fc3a5 (diff)
downloadpoi-a60f552c5908dfaad31cfc0db6ef82690dcd5b96.tar.gz
poi-a60f552c5908dfaad31cfc0db6ef82690dcd5b96.zip
Remove some more from the Ant Build to try to keep POI-DSL-old-Xerces working for now
We can also switch it to Gradle soon, but let's keep a bit of Ant build a bit longer git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895601 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml39
1 files changed, 1 insertions, 38 deletions
diff --git a/build.xml b/build.xml
index fcf795353a..02696acc67 100644
--- a/build.xml
+++ b/build.xml
@@ -2152,40 +2152,6 @@ under the License.
</javadoc>
</target>
-
- <target name="maven-poms"
- description="Builds the POM files for a maven distribution, and copies these and the jars to the appropriate locations">
-
- <!-- Build the org.apache.poi poms -->
- <copy todir="${dist.dir}/maven">
- <fileset dir="maven" includes="poi*.pom"/>
- <chainedmapper>
- <firstmatchmapper>
- <regexpmapper from="^(.*).pom$$" to="\1/\1.pom"/>
- <globmapper from="poi.pom" to="poi/poi.pom"/>
- </firstmatchmapper>
- <globmapper from="*.pom" to="*-${version.id}.pom"/>
- </chainedmapper>
- <filterchain>
- <replacetokens>
- <token key="VERSION" value="${version.id}"/>
- </replacetokens>
- </filterchain>
- </copy>
-
- <mkdir dir="${dist.dir}/maven/poi-ooxml-full"/>
- <copy tofile="${dist.dir}/maven/poi-ooxml-full/poi-ooxml-full-${version.id}.pom" file="maven/poi-ooxml-full.pom">
- <filterchain>
- <replacetokens>
- <token key="VERSION" value="${version.id}"/>
- </replacetokens>
- </filterchain>
- </copy>
-
- <echo>Maven POMs are located in ${dist.dir}</echo>
- <echo>Use ant dist-nexus to deploy the artifacts in the remote repository</echo>
- </target>
-
<macrodef name="maven-jar">
<attribute name="src"/>
<attribute name="module"/>
@@ -2431,9 +2397,6 @@ under the License.
<union refid="src-files"/>
</tar>
- <echo>Creating Maven POMs</echo>
- <antcall target="maven-poms"/>
-
<echo>Distribution located in ${dist.dir}</echo>
<echo>Use "ant dist-checksum" to create sha256/sha512 checksums and GPG signatures</echo>
</target>
@@ -2452,7 +2415,7 @@ under the License.
<!-- continuous integration targets -->
<target name="jenkins"
- depends="replaceVersion, compile, test-all, jar, javadocs, assemble, findbugs, release-notes, rat-check, forbidden-apis-check, help, fetch-svn-jars, maven-poms, maventask"
+ depends="replaceVersion, compile, test-all, jar, javadocs, assemble, findbugs, release-notes, rat-check, forbidden-apis-check, help, fetch-svn-jars, maventask"
description="Target run by Jenkins on a continuous basis. Builds and tests POI, generates artifacts and documentation, and searches for problems."/>
<target name="maventask" depends="init">