You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by gr...@apache.org on 2004/10/24 18:46:31 UTC

svn commit: rev 55452 - incubator/lenya/trunk

Author: gregor
Date: Sun Oct 24 09:46:30 2004
New Revision: 55452

Added:
   incubator/lenya/trunk/build.properties
Log:
overhaul of the build system:

got rid of duplicate servlet.jar
switched to standard build.properties / local.build.properties pair
removed dependency on external ant
added build.bat / build.sh script from cocoon
got rid of commons-dpcp.jar
Tomcat 5 is now the default
Upgraded Ant from 1.6a to 1.6.2
removed gump.xml (it is managed externally now)



Added: incubator/lenya/trunk/build.properties
==============================================================================
--- (empty file)
+++ incubator/lenya/trunk/build.properties	Sun Oct 24 09:46:30 2004
@@ -0,0 +1,113 @@
+# Copyright 1999-2004 The Apache Software Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Properties controlling the build process
+
+#------------------------------------------------------------------------------------
+# The root of the Cocoon source tree
+
+cocoon.src.dir=../cocoon-2.1
+
+#------------------------------------------------------------------------------------
+# The original, unmodified and expanded cocoon webapp directory
+
+cocoon.webapp.dir=${cocoon.src.dir}/build/webapp
+
+#------------------------------------------------------------------------------------
+# Root directories where publications are located
+
+pubs.root.dirs=src/webapp/lenya/pubs
+#pubs.root.dirs=src/webapp/lenya/pubs:../anotherproject/pubs:/home/user/my-pub
+
+
+#------------------------------------------------------------------------------------
+# Where the 'install' build target should put the webapp context
+# WARNING: This has to be an absolute path! (FIXME: cocoon.xconf needs absolute path (scr/targets/init-build.xml))
+# NOTE: Do not use white spaces within the path
+
+tomcat.home.dir=/usr/local/tomcat
+#tomcat.home.dir=C:/build/tomcat
+
+
+#------------------------------------------------------------------------------------
+# Where the 'install' build target should put the webapp context
+# NOTE: This path is not necessarily relative to tomcat.home.dir
+
+tomcat.webapps.dir=${tomcat.home.dir}/webapps/lenya
+
+
+#------------------------------------------------------------------------------------
+# The server cache directory to be cleaned by the 'reset' target
+# NOTE: This path is not necessarily relative to tomcat.home.dir
+
+# Tomcat 5.x
+tomcat.cache.dir=${tomcat.home.dir}/work/Catalina/localhost/lenya
+# Tomcat 4.x
+#tomcat.cache.dir=${tomcat.home.dir}/work/Standalone/localhost/lenya
+
+
+#------------------------------------------------------------------------------------
+# Where the 'install' build target should copy the endorsed libraries
+# NOTE: This path is not necessarily relative to tomcat.home.dir
+
+tomcat.endorsed.dir=${tomcat.home.dir}/common/endorsed
+
+#------------------------------------------------------------------------------------
+# Files and directories which should be excluded during 'install' and 'reset'
+# Comma- or space-separated list of patterns
+# All files are included when commented
+
+target.install.excludes=lenya/resources/bxeng/**,lenya/resources/kupu/**
+target.reset.excludes=lenya/resources/bxeng/**,lenya/resources/kupu/**
+
+#target.install.excludes=**/default/**/authoring/**,**/default/**/live/**,**/default/config/ac/passwd/*.iml
+#target.reset.excludes=**/default/**/authoring/**,**/default/**/live/**,**/default/config/ac/passwd/*.iml
+
+
+#------------------------------------------------------------------------------------
+# HSQL-DB server port (default is 9002)
+# NOTE: This parameter is useful if you want to run several lenya instances on the same server
+
+hsqldb-server.port=9002
+
+
+#------------------------------------------------------------------------------------
+# Enable multipart requests (for security reasons turned off by default. 
+# Uncomment to enable)
+
+enable.uploads=false
+
+
+#------------------------------------------------------------------------------------
+# Enable RollingFileAppender of log4j
+
+enable.log4j=false
+
+
+#------------------------------------------------------------------------------------
+# Anteater and Webtest home directories
+
+#anteater.home=/usr/local/anteater
+#webtest.home = /usr/local/canoo-webtest
+
+#------------------------------------------------------------------------------------
+# Eclipse Properties for use with the eclipse-project target
+
+ide.eclipse.outputdir=build/eclipse/classes
+ide.eclipse.export.libs=false
+
+#------------------------------------------------------------------------------------
+# Xopus context name
+
+xopus.context=Xopus2.1.64

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org