summaryrefslogtreecommitdiffstats
path: root/base/tps/shared/conf/jkconf.ant.xml
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-05-16 13:06:14 -0500
committerEndi S. Dewata <edewata@redhat.com>2013-06-10 13:35:22 -0400
commit0812c8d7583250d9ccbfbc3439083d1d2296b2f5 (patch)
treeed22e7a39a37ee87a36257170b00da7db11eca54 /base/tps/shared/conf/jkconf.ant.xml
parente4656ce3f71f5cc0ba124ed5082a264e2689140b (diff)
downloadpki-0812c8d7583250d9ccbfbc3439083d1d2296b2f5.tar.gz
pki-0812c8d7583250d9ccbfbc3439083d1d2296b2f5.tar.xz
pki-0812c8d7583250d9ccbfbc3439083d1d2296b2f5.zip
Added Tomcat-based TPS instance.
The build and deployment tools have been modified to support creating a basic Tomcat instance to run TPS. New configuration and template files for TPS have been copied from another Tomcat subsystem. The TPS functionality itself will be added in future patches. Ticket #526
Diffstat (limited to 'base/tps/shared/conf/jkconf.ant.xml')
-rw-r--r--base/tps/shared/conf/jkconf.ant.xml55
1 files changed, 55 insertions, 0 deletions
diff --git a/base/tps/shared/conf/jkconf.ant.xml b/base/tps/shared/conf/jkconf.ant.xml
new file mode 100644
index 000000000..48396f1b7
--- /dev/null
+++ b/base/tps/shared/conf/jkconf.ant.xml
@@ -0,0 +1,55 @@
+<!-- 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>