diff options
author | Andre Fischer <af@apache.org> | 2012-07-03 11:44:39 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-05-11 19:03:54 +0100 |
commit | 17a3a44f8949b2e37d45338f5c5702d0bb20f4a7 (patch) | |
tree | ce5bfd37c6d667dc7b5f7a112931a6dd51d721e3 /tomcat | |
parent | 11f8e53d6c9942185702552445a751c6f542942d (diff) |
Resolves: #i120174# Do not build tomcat code that is not delivered.
(cherry picked from commit 48856f602fc5375586fe48a82ff0c47745ee69f2)
Conflicts:
solenv/bin/build.pl
tomcat/tomcat.patch
Change-Id: If5b5495d767b715e7fefde1870024064947790ea
Diffstat (limited to 'tomcat')
-rw-r--r-- | tomcat/build.xml | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/tomcat/build.xml b/tomcat/build.xml index 2d54d3df39da..10982e642be7 100644 --- a/tomcat/build.xml +++ b/tomcat/build.xml @@ -1,25 +1,15 @@ -<project name="jsr152 and jsr154 in Debian" default="debuild" basedir="."> +<project name="jsr154 in LibreOffice" default="debuild" basedir="."> <target name="debuild" - description="Build jsr154 and jsr152 for Debian (Default)"> + description="Build jsr154 for LibreOffice (Default)"> <echo message="Building Servlet 2.4 API"/> <ant antfile="jsr154/build.xml" - target="dist" - inheritAll="false" - /> - <echo message="Building JSP 2.0 API"/> - <ant antfile="jsr152/build.xml" - target="dist" + target="jar" inheritAll="false" /> </target> <target name="clean" description="Clean"> - <echo message="Cleaning JSP 2.0 API"/> - <ant antfile="jsr152/build.xml" - target="clean" - inheritAll="false" - /> <echo message="Cleaning Servlet 2.4 API"/> <ant antfile="jsr154/build.xml" target="clean" |