summaryrefslogtreecommitdiffstats
path: root/base/tps/shared/conf/jkconf.ant.xml
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-08-13 15:56:50 -0400
committerEndi S. Dewata <edewata@redhat.com>2013-08-15 12:26:12 -0400
commit17d6be4d85741bffa21d93aceaff00223bc77dec (patch)
tree7703eba9059076e47c7262120150292270c54d15 /base/tps/shared/conf/jkconf.ant.xml
parent4ab7fdc3c08a6279d838ae795889924e9fc306cb (diff)
downloadpki-17d6be4d85741bffa21d93aceaff00223bc77dec.tar.gz
pki-17d6be4d85741bffa21d93aceaff00223bc77dec.tar.xz
pki-17d6be4d85741bffa21d93aceaff00223bc77dec.zip
Moved Tomcat-based TPS to separate folder.
The source files for the new Tomcat-based TPS has been moved from base/tps to base/tps-tomcat. The new TPS will now be build in pki-core and packaged in pki-tps-tomcat RPM. The old TPS and RA have been restored to the previous state before adding the new TPS. Once the new TPS is complete, the old TPS can be removed, the new TPS can be moved back to base/tps and the package can be renamed back to pki-tps. Ticket #702
Diffstat (limited to 'base/tps/shared/conf/jkconf.ant.xml')
-rw-r--r--base/tps/shared/conf/jkconf.ant.xml55
1 files changed, 0 insertions, 55 deletions
diff --git a/base/tps/shared/conf/jkconf.ant.xml b/base/tps/shared/conf/jkconf.ant.xml
deleted file mode 100644
index 48396f1b7..000000000
--- a/base/tps/shared/conf/jkconf.ant.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<!-- BEGIN COPYRIGHT BLOCK
- Copyright (C) 2006 Red Hat, Inc.
- All rights reserved.
- END COPYRIGHT BLOCK -->
-<project name="jkconf" default="main" basedir=".">
-
- <target name="init-3x" if="33.detect">
- <taskdef name="jkconf"
- classname="org.apache.jk.config.WebXml2Jk" >
- <classpath>
- <!-- 3.3 support -->
- <pathelement location="/ws/jtc/jk/build/classes" />
- <pathelement location="${tomcat.home}/lib/container/tomcat-jk2.jar" />
- <pathelement location="${tomcat.home}/lib/container/crimson.jar"/>
- <pathelement location="${tomcat.home}/lib/common/commons-logging.jar"/>
- </classpath>
- </taskdef>
- </target>
-
- <target name="init-4x" if="4x.detect" >
- <path id="main.classpath">
- <!-- 3.3 support -->
- <fileset dir="${tomcat.home}/lib" includes="*.jar" />
- <fileset dir="${tomcat.home}/server/lib" includes="*.jar" />
- <fileset dir="${tomcat.home}/common/lib" includes="*.jar" />
- </path>
-
- <taskdef name="jkconf" classpathref="main.classpath"
- classname="org.apache.jk.config.WebXml2Jk" />
- </target>
-
- <target name="detect" >
- <property file="build.properties"/>
- <property file="${user.home}/build.properties"/>
- <property file="${user.home}/.build.properties"/>
-
- <!-- default locations, overrident by properties.
- This file must be installed in conf/ -->
- <property name="tomcat.home" location=".." />
-
- <available property="33.detect" file="${tomcat.home}/lib/container" />
- <available property="4x.detect" file="${tomcat.home}/server/lib" />
- </target>
-
- <target name="init" depends="detect,init-3x,init-4x" />
-
- <!-- ==================== Detection and reports ==================== -->
-
-
- <target name="main" depends="init">
- <jkconf docBase="${tomcat.home}/webapps/examples"
- context="/examples" />
- </target>
-
-</project>