|
From: Michael K. <ko...@us...> - 2004-08-03 08:56:09
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10274 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- build.xml 30 Jul 2004 11:25:57 -0000 1.1.1.1 +++ build.xml 3 Aug 2004 08:55:59 -0000 1.2 @@ -1,363 +1,379 @@ -<!-- - Build script for Cobricks-2 applications - - Please do not change this file for local development - installations, but add your property changes to build.properties ---> - -<project name="cobricks-2-app" default="compile" basedir="."> - - -<!-- ==================== Property Definitions ========================== --> - -<property file="build.properties"/> -<property file="${user.home}/build.properties"/> - -<property name="app.name" value="cobricks-app"/> -<property name="app.path" value=""/> -<property name="app.version" value="0.9"/> -<property name="build.home" value="${basedir}/build"/> -<property name="java.home" value="/usr/proj/java/jdk1.4.2"/> -<property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> -<property name="axis.home" value="/usr/proj/java/axis-1.1"/> -<property name="dist.home" value="${basedir}/dist"/> -<property name="src.home" value="${basedir}/src"/> -<property name="conf.home" value="${basedir}/conf"/> -<property name="web.home" value="${basedir}/web"/> -<property name="weblib.home" value="${basedir}/web/WEB-INF/lib"/> - -<property name="cobricks.home" value="${basedir}/../cobricks2"/> - -<property name="catalina.serverport" value="8005"/> -<property name="catalina.httpport" value="8080"/> -<property name="catalina.httpsport" value="8443"/> - - -<!-- =================== Compilation Control Options =================== --> - -<property name="compile.debug" value="true"/> -<property name="compile.deprecation" value="true"/> -<property name="compile.optimize" value="true"/> - - -<!-- ==================== Compilation Classpath ========================= --> - -<path id="compile.classpath"> - - <!-- Include all elements that Tomcat exposes to applications --> - <pathelement location="${catalina.home}/common/classes"/> - <fileset dir="${catalina.home}/common/endorsed"> - <include name="*.jar"/> - </fileset> - <fileset dir="${catalina.home}/common/lib"> - <include name="*.jar"/> - </fileset> - <pathelement location="${catalina.home}/shared/classes"/> - <fileset dir="${catalina.home}/shared/lib"> - <include name="*.jar"/> - </fileset> - - <!-- Include Axis libraries --> - <fileset dir="${axis.home}/webapps/axis/WEB-INF/lib"> - <include name="*.jar"/> - <exclude name="commons-logging.jar"/> - </fileset> - - <!-- Include all JAR files that will be included in /WEB-INF/lib --> - <fileset dir="${weblib.home}"> - <include name="*.jar"/> - </fileset> - -</path> - -<path id="exec.classpath"> - <pathelement location="${build.home}/webapps/ROOT/WEB-INF/classes" /> - <path refid="compile.classpath"/> -</path> - - -<!-- ==================== All Target ==================================== --> - -<target name="all" depends="clean,compile" - description="Clean build and dist directories, then compile"/> - - -<!-- ==================== Clean Target ================================== --> - -<target name="clean" - description="Delete old build and dist directories"> - <delete dir="${build.home}"/> - <delete dir="${dist.home}"/> -</target> - - -<!-- ==================== Compile Target ================================ --> - -<target name="compile" depends="prepare,compile.cobrickshome" - description="Compile Java sources"> - - <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/classes"/> - - <!-- Compile Java classes as necessary --> - <javac srcdir="${src.home}" - destdir="${build.home}/webapps/ROOT/WEB-INF/classes" - debug="${compile.debug}" - deprecation="${compile.deprecation}" - optimize="${compile.optimize}"> - <classpath refid="compile.classpath"/> - <include name="*/**"/> - </javac> - - <!-- Copy application resources --> - <copy todir="${build.home}/webapps/ROOT/WEB-INF/classes"> - <fileset dir="${src.home}" excludes="**/*.java"/> - </copy> - -</target> - -<target name="compile.cobrickshome" if="cobricks.home"> - <copy todir="${build.home}/webapps/ROOT/WEB-INF/classes"> - <fileset dir="${cobricks.home}/build/webapps/ROOT/WEB-INF/classes"/> - </copy> -</target> - - -<!-- ==================== Dist Target =================================== --> - -<target name="dist" depends="compile" - description="Create binary distribution"> - -</target> - -<target name="distsrc" depends="" - description="Create source code distribution"> - -</target> - - -<!-- ==================== Check for OS ================================== --> - -<target name="check_Windows_OS"> - <condition property="is_Windows_OS"> - <os family="windows" /> - </condition> - </target> - -<target name="check_Unix_OS"> - <condition property="is_Unix_OS"> - <os family="unix" /> - </condition> -</target> - - -<!-- ==================== OS Target ================================== --> -<target name="test_Windows_OS" - depends="check_Windows_OS" - if="is_Windows_OS"> - <echo message="Is checker-Windows"/> -</target> - - <target name="test_Unix_OS" - depends="check_Unix_OS" - if="is_Unix_OS"> - <echo message="Is checker-Unix"/> -</target> - - -<!-- ==================== OS Test ================================== --> - <target name="test" > - <antcall target="test_Windows_OS" /> - <antcall target="test_Unix_OS" /> - </target> - - - - -<!-- ==================== Javadoc Target ================================ --> - -<target name="javadoc" depends="compile" - description="Create Javadoc API documentation"> - - <mkdir dir="${dist.home}/docs/api"/> - <javadoc sourcepath="${src.home}" - destdir="${dist.home}/docs/api" - author="true" - version="true" - use="true" - packagenames="org.cobricks.*"> - <classpath refid="compile.classpath"/> - </javadoc> - -</target> - - -<!-- ==================== Prepare Target ================================ --> - -<target name="prepare"> - - <!-- Create build directories as needed --> - <mkdir dir="${build.home}"/> - <mkdir dir="${build.home}/webapps"/> - <mkdir dir="${build.home}/webapps/ROOT"/> - <mkdir dir="${build.home}/webapps/ROOT/WEB-INF"/> - <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/conf"/> - <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/classes"/> - - <mkdir dir="${build.home}/conf"/> - <mkdir dir="${build.home}/logs"/> - <mkdir dir="${build.home}/temp"/> - - <!-- copy tomcat configuration --> - <copy todir="${build.home}/conf"> - <fileset dir="${basedir}/tomcat/conf"/> - </copy> - <!-- adapt server.xml (port numbers) --> - <replace file="${build.home}/conf/server.xml" token="@@@SERVERPORT@@@" - value="${catalina.serverport}" /> - <replace file="${build.home}/conf/server.xml" token="@@@HTTPPORT@@@" - value="${catalina.httpport}" /> - <replace file="${build.home}/conf/server.xml" token="@@@HTTPSPORT@@@" - value="${catalina.httpsport}" /> - - <!-- Copy static content of this web application --> - <copy todir="${build.home}/webapps/ROOT"> - <fileset dir="${web.home}"/> - </copy> - - <!-- copy Cobricks configuration --> - <copy todir="${build.home}/webapps/ROOT/WEB-INF/conf"> - <fileset dir="${conf.home}"/> - </copy> - - <!-- check if file log.properties exists and create it if needed --> - <available file="conf/log.properties" property="local.log.prop.present"/> - <copy file="conf/log.properties.orig" tofile="conf/log.properties" - overwrite="false"/> - - <!-- copy manager web application --> - <copy todir="${build.home}/webapps/manager"> - <fileset dir="${basedir}/tomcat/webapps/manager"/> - </copy> - - <copy todir="${build.home}/webapps/ROOT/WEB-INF/lib"> - <fileset dir="${axis.home}/webapps/axis/WEB-INF/lib"> - <include name="*"/> - <exclude name="commons-logging.jar"/> - </fileset> - </copy> - - <!-- copy other web applications to webapps directory --> - <antcall target="copyjetspeed"/> - <antcall target="copyxindice"/> - -</target> - -<target name="copyjetspeed" if="jetspeed.home"> - <copy todir="${build.home}/webapps/jetspeed"> - <fileset dir="${jetspeed.home}"/> - </copy> -</target> - -<target name="copyxindice" if="xindice_tomcat.home"> - <mkdir dir="${build.home}/webapps/xindice"/> - <copy todir="${build.home}/webapps/xindice"> - <fileset dir="${xindice_tomcat.home}" includes="**/*"/> - </copy> -</target> - - -<!-- ==================== Start Targets ================================= --> - -<target name="start" depends="compile,prepare"> - <antcall target="start_Windows_OS" /> - <antcall target="start_Unix_OS" /> -</target> - -<target name="s"> - <antcall target="start_Windows_OS" /> - <antcall target="start_Unix_OS" /> -</target> - -<target name="startbg" depends="compile,prepare"> - <antcall target="start_Windows_OS_Bg" /> - <antcall target="start_Unix_OS_Bg" /> -</target> - -<target name="stop"> - <antcall target="stop_Windows_OS" /> - <antcall target="stop_Unix_OS" /> -</target> - -<target name="stop_Windows_OS" depends="check_Windows_OS" if="is_Windows_OS"> - <echo message="********************************"/> - <echo message="Stopping for Windows-environment"/> - <echo message="********************************"/> - <exec dir="." executable="${catalina.home}/bin/shutdown.bat"> - <env key="JAVA_HOME" path="${java.home}"/> - <env key="CATALINA_HOME" path="${catalina.home}"/> - <env key="CATALINA_BASE" path="${build.home}"/> - <arg line=""/> - </exec> -</target> - -<target name="stop_Unix_OS" depends="check_Unix_OS" if="is_Unix_OS"> - <echo message="*****************************"/> - <echo message="Stopping for Unix-environment"/> - <echo message="*****************************"/> - <exec dir="." executable="${catalina.home}/bin/shutdown.sh"> - <env key="JAVA_HOME" path="${java.home}"/> - <env key="CATALINA_HOME" path="${catalina.home}"/> - <env key="CATALINA_BASE" path="${build.home}"/> - <arg line=""/> - </exec> -</target> - -<target name="start_Windows_OS" depends="check_Windows_OS" if="is_Windows_OS"> - <echo message="********************************"/> - <echo message="Starting for Windows-environment"/> - <echo message="********************************"/> - <exec dir="." executable="${catalina.home}/bin/startup-run.bat"> - <env key="CATALINA_HOME" path="${catalina.home}"/> - <env key="CATALINA_BASE" path="${build.home}"/> - <arg line=""/> - </exec> -</target> - -<target name="start_Unix_OS" depends="check_Unix_OS" if="is_Unix_OS"> - <echo message="*****************************"/> - <echo message="Starting for Unix-environment"/> - <echo message="*****************************"/> - <exec dir="." executable="${catalina.home}/bin/startup-run.sh"> - <env key="CATALINA_HOME" path="${catalina.home}"/> - <env key="CATALINA_BASE" path="${build.home}"/> - <arg line=""/> - </exec> -</target> - -<target name="start_Windows_OS_Bg" depends="check_Windows_OS" if="is_Windows_OS"> - <echo message="***************************************************"/> - <echo message="Starting in background-mode for Windows-environment"/> - <echo message="***************************************************"/> - <exec dir="." executable="${catalina.home}/bin/startup.bat"> - <env key="JAVA_HOME" path="${java.home}"/> - <env key="CATALINA_HOME" path="${catalina.home}"/> - <env key="CATALINA_BASE" path="${build.home}"/> - <arg line=""/> - </exec> -</target> - -<target name="start_Unix_OS_Bg" depends="check_Unix_OS" if="is_Unix_OS"> - <echo message="************************************************"/> - <echo message="Starting in background-mode for Unix-environment"/> - <echo message="************************************************"/> - <exec dir="." executable="${catalina.home}/bin/startup.sh"> - <env key="JAVA_HOME" path="${java.home}"/> - <env key="CATALINA_HOME" path="${catalina.home}"/> - <env key="CATALINA_BASE" path="${build.home}"/> - <arg line=""/> - </exec> -</target> - - -</project> - +<!-- + Build script for Cobricks-2 applications + + Please do not change this file for local development + installations, but add your property changes to build.properties +--> + +<project name="cobricks-2-app" default="compile" basedir="."> + + +<!-- ==================== Property Definitions ========================== --> + +<property file="build.properties"/> +<property file="${user.home}/build.properties"/> + +<property name="app.name" value="cobricks-app"/> +<property name="app.path" value=""/> +<property name="app.version" value="0.9"/> +<property name="build.home" value="${basedir}/build"/> +<property name="java.home" value="/usr/proj/java/jdk1.4.2"/> +<property name="catalina.home" value="/usr/proj/java/tomcat5.0.3"/> +<property name="axis.home" value="/usr/proj/java/axis-1.1"/> +<property name="xindice.home" value="/usr/proj/java/xindice-1.1"/> +<property name="dist.home" value="${basedir}/dist"/> +<property name="src.home" value="${basedir}/src"/> +<property name="conf.home" value="${basedir}/conf"/> +<property name="web.home" value="${basedir}/web"/> +<property name="weblib.home" value="${basedir}/web/WEB-INF/lib"/> + +<property name="cobricks.home" value="${basedir}/../cobricks2"/> + +<property name="catalina.serverport" value="8005"/> +<property name="catalina.httpport" value="8080"/> +<property name="catalina.httpsport" value="8443"/> + + +<!-- =================== Compilation Control Options =================== --> + +<property name="compile.debug" value="true"/> +<property name="compile.deprecation" value="true"/> +<property name="compile.optimize" value="true"/> + + +<!-- ==================== Compilation Classpath ========================= --> + +<path id="compile.classpath"> + + <!-- Include all elements that Tomcat exposes to applications --> + <pathelement location="${catalina.home}/common/classes"/> + <fileset dir="${catalina.home}/common/endorsed"> + <include name="*.jar"/> + </fileset> + <fileset dir="${catalina.home}/common/lib"> + <include name="*.jar"/> + </fileset> + <pathelement location="${catalina.home}/shared/classes"/> + <fileset dir="${catalina.home}/shared/lib"> + <include name="*.jar"/> + </fileset> + + <!-- Include Xindice libraries --> + <fileset dir="${xindice.home}/lib"> + <include name="xml*.jar"/> + <exclude name="xmldb-api-sdk*.jar"/> + </fileset> + + <!-- Include Axis libraries --> + <fileset dir="${axis.home}/webapps/axis/WEB-INF/lib"> + <include name="*.jar"/> + <exclude name="commons-logging.jar"/> + </fileset> + + <!-- Include all JAR files that will be included in /WEB-INF/lib --> + <fileset dir="${weblib.home}"> + <include name="*.jar"/> + </fileset> + +</path> + +<path id="exec.classpath"> + <pathelement location="${build.home}/webapps/ROOT/WEB-INF/classes" /> + <path refid="compile.classpath"/> +</path> + + +<!-- ==================== All Target ==================================== --> + +<target name="all" depends="clean,compile" + description="Clean build and dist directories, then compile"/> + + +<!-- ==================== Clean Target ================================== --> + +<target name="clean" + description="Delete old build and dist directories"> + <delete dir="${build.home}"/> + <delete dir="${dist.home}"/> +</target> + + +<!-- ==================== Compile Target ================================ --> + +<target name="compile" depends="prepare,compile.cobrickshome" + description="Compile Java sources"> + + <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/classes"/> + + <!-- Compile Java classes as necessary --> + <javac srcdir="${src.home}" + destdir="${build.home}/webapps/ROOT/WEB-INF/classes" + debug="${compile.debug}" + deprecation="${compile.deprecation}" + optimize="${compile.optimize}"> + <classpath refid="compile.classpath"/> + <include name="*/**"/> + </javac> + + <!-- Copy application resources --> + <copy todir="${build.home}/webapps/ROOT/WEB-INF/classes"> + <fileset dir="${src.home}" excludes="**/*.java"/> + </copy> + +</target> + +<target name="compile.cobrickshome" if="cobricks.home"> + <copy todir="${build.home}/webapps/ROOT/WEB-INF/classes"> + <fileset dir="${cobricks.home}/build/webapps/ROOT/WEB-INF/classes"/> + </copy> +</target> + + +<!-- ==================== Dist Target =================================== --> + +<target name="dist" depends="compile" + description="Create binary distribution"> + +</target> + +<target name="distsrc" depends="" + description="Create source code distribution"> + +</target> + + +<!-- ==================== Check for OS ================================== --> + +<target name="check_Windows_OS"> + <condition property="is_Windows_OS"> + <os family="windows" /> + </condition> + </target> + +<target name="check_Unix_OS"> + <condition property="is_Unix_OS"> + <os family="unix" /> + </condition> +</target> + + +<!-- ==================== OS Target ================================== --> +<target name="test_Windows_OS" + depends="check_Windows_OS" + if="is_Windows_OS"> + <echo message="Is checker-Windows"/> +</target> + + <target name="test_Unix_OS" + depends="check_Unix_OS" + if="is_Unix_OS"> + <echo message="Is checker-Unix"/> +</target> + + +<!-- ==================== OS Test ================================== --> + <target name="test" > + <antcall target="test_Windows_OS" /> + <antcall target="test_Unix_OS" /> + </target> + + + + +<!-- ==================== Javadoc Target ================================ --> + +<target name="javadoc" depends="compile" + description="Create Javadoc API documentation"> + + <mkdir dir="${dist.home}/docs/api"/> + <javadoc sourcepath="${src.home}" + destdir="${dist.home}/docs/api" + author="true" + version="true" + use="true" + packagenames="org.cobricks.*"> + <classpath refid="compile.classpath"/> + </javadoc> + +</target> + + +<!-- ==================== Prepare Target ================================ --> + +<target name="prepare"> + + <!-- Create build directories as needed --> + <mkdir dir="${build.home}"/> + <mkdir dir="${build.home}/webapps"/> + <mkdir dir="${build.home}/webapps/ROOT"/> + <mkdir dir="${build.home}/webapps/ROOT/WEB-INF"/> + <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/conf"/> + <mkdir dir="${build.home}/webapps/ROOT/WEB-INF/classes"/> + + <mkdir dir="${build.home}/conf"/> + <mkdir dir="${build.home}/logs"/> + <mkdir dir="${build.home}/temp"/> + + <!-- copy tomcat configuration --> + <copy todir="${build.home}/conf"> + <fileset dir="${basedir}/tomcat/conf"/> + </copy> + <!-- adapt server.xml (port numbers) --> + <replace file="${build.home}/conf/server.xml" token="@@@SERVERPORT@@@" + value="${catalina.serverport}" /> + <replace file="${build.home}/conf/server.xml" token="@@@HTTPPORT@@@" + value="${catalina.httpport}" /> + <replace file="${build.home}/conf/server.xml" token="@@@HTTPSPORT@@@" + value="${catalina.httpsport}" /> + + <!-- Copy static content of this web application --> + <copy todir="${build.home}/webapps/ROOT"> + <fileset dir="${web.home}"/> + </copy> + + <!-- copy Cobricks configuration --> + <copy todir="${build.home}/webapps/ROOT/WEB-INF/conf"> + <fileset dir="${conf.home}"/> + </copy> + + <!-- check if file log.properties exists and create it if needed --> + <available file="conf/log.properties" property="local.log.prop.present"/> + <copy file="conf/log.properties.orig" tofile="conf/log.properties" + overwrite="false"/> + + <!-- copy manager web application --> + <copy todir="${build.home}/webapps/manager"> + <fileset dir="${basedir}/tomcat/webapps/manager"/> + </copy> + + <copy todir="${build.home}/webapps/ROOT/WEB-INF/lib"> + <fileset dir="${axis.home}/webapps/axis/WEB-INF/lib"> + <include name="*"/> + <exclude name="commons-logging.jar"/> + </fileset> + </copy> + + <copy todir="${build.home}/webapps/ROOT/WEB-INF/lib"> + <fileset dir="${xindice.home}/lib"> + <include name="xml*.jar" if="xindice.home"/> + <exclude name="xmldb-api-sdk*"/> + </fileset> + </copy> + + <!-- copy other web applications to webapps directory --> + <antcall target="copyjetspeed"/> + +</target> + +<target name="copyjetspeed" if="jetspeed.home"> + <copy todir="${build.home}/webapps/jetspeed"> + <fileset dir="${jetspeed.home}"/> + </copy> +</target> + + +<!-- ==================== Start Targets ================================= --> + +<target name="start" depends="compile,prepare"> + <antcall target="start_Windows_OS" /> + <antcall target="start_Unix_OS" /> +</target> + +<target name="s"> + <antcall target="start_Windows_OS" /> + <antcall target="start_Unix_OS" /> +</target> + +<target name="startbg" depends="compile,prepare"> + <antcall target="start_Windows_OS_Bg" /> + <antcall target="start_Unix_OS_Bg" /> +</target> + +<target name="stop"> + <antcall target="stop_Windows_OS" /> + <antcall target="stop_Unix_OS" /> +</target> + +<target name="stop_Windows_OS" depends="check_Windows_OS" if="is_Windows_OS"> + <echo message="********************************"/> + <echo message="Stopping for Windows-environment"/> + <echo message="********************************"/> + <exec dir="." executable="${catalina.home}/bin/shutdown.bat"> + <env key="JAVA_HOME" path="${java.home}"/> + <env key="CATALINA_HOME" path="${catalina.home}"/> + <env key="CATALINA_BASE" path="${build.home}"/> + <arg line=""/> + </exec> +</target> + +<target name="stop_Unix_OS" depends="check_Unix_OS" if="is_Unix_OS"> + <echo message="*****************************"/> + <echo message="Stopping for Unix-environment"/> + <echo message="*****************************"/> + <exec dir="." executable="${catalina.home}/bin/shutdown.sh"> + <env key="JAVA_HOME" path="${java.home}"/> + <env key="CATALINA_HOME" path="${catalina.home}"/> + <env key="CATALINA_BASE" path="${build.home}"/> + <arg line=""/> + </exec> +</target> + +<target name="start_Windows_OS" depends="check_Windows_OS" if="is_Windows_OS"> + <echo message="********************************"/> + <echo message="Starting for Windows-environment"/> + <echo message="********************************"/> + <exec dir="." executable="${catalina.home}/bin/startup-run.bat"> + <env key="CATALINA_HOME" path="${catalina.home}"/> + <env key="CATALINA_BASE" path="${build.home}"/> + <arg line=""/> + </exec> +</target> + +<target name="start_Unix_OS" depends="check_Unix_OS" if="is_Unix_OS"> + <echo message="*****************************"/> + <echo message="Starting for Unix-environment"/> + <echo message="*****************************"/> + <exec dir="." executable="${catalina.home}/bin/startup-run.sh"> + <env key="CATALINA_HOME" path="${catalina.home}"/> + <env key="CATALINA_BASE" path="${build.home}"/> + <arg line=""/> + </exec> +</target> + +<target name="start_Windows_OS_Bg" depends="check_Windows_OS" if="is_Windows_OS"> + <echo message="***************************************************"/> + <echo message="Starting in background-mode for Windows-environment"/> + <echo message="***************************************************"/> + <exec dir="." executable="${catalina.home}/bin/startup.bat"> + <env key="JAVA_HOME" path="${java.home}"/> + <env key="CATALINA_HOME" path="${catalina.home}"/> + <env key="CATALINA_BASE" path="${build.home}"/> + <arg line=""/> + </exec> +</target> + +<target name="start_Unix_OS_Bg" depends="check_Unix_OS" if="is_Unix_OS"> + <echo message="************************************************"/> + <echo message="Starting in background-mode for Unix-environment"/> + <echo message="************************************************"/> + <exec dir="." executable="${catalina.home}/bin/startup.sh"> + <env key="JAVA_HOME" path="${java.home}"/> + <env key="CATALINA_HOME" path="${catalina.home}"/> + <env key="CATALINA_BASE" path="${build.home}"/> + <arg line=""/> + </exec> +</target> + + +<!-- =================== Client Applications ========================== --> + +<target name="cwall" depends="compile"> + <java fork="yes" classname="org.cobricks.cwall.CWall" + classpathref="exec.classpath"> + <arg line="-c conf -u testuser -p testpw"/> + </java> +</target> + + +</project> + |
|
From: Zelenko <fa...@us...> - 2004-10-26 10:37:29
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4763 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- build.xml 3 Aug 2004 08:55:59 -0000 1.2 +++ build.xml 26 Oct 2004 10:37:20 -0000 1.3 @@ -29,9 +29,9 @@ <property name="cobricks.home" value="${basedir}/../cobricks2"/> -<property name="catalina.serverport" value="8005"/> -<property name="catalina.httpport" value="8080"/> -<property name="catalina.httpsport" value="8443"/> +<property name="catalina.serverport" value="4005"/> +<property name="catalina.httpport" value="4080"/> +<property name="catalina.httpsport" value="4443"/> <!-- =================== Compilation Control Options =================== --> |
|
From: Michael K. <ko...@us...> - 2006-09-22 17:37:51
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv15218 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- build.xml 30 May 2006 14:14:29 -0000 1.4 +++ build.xml 22 Sep 2006 17:37:47 -0000 1.5 @@ -131,10 +131,27 @@ <target name="dist" depends="compile" description="Create binary distribution"> -</target> + <mkdir dir="${dist.home}"/> -<target name="distsrc" depends="" - description="Create source code distribution"> + <!-- Create JAR file for classes --> + <jar destfile="${dist.home}/drehscheibe.jar"> + <fileset dir="${build.home}/webapps/${webappname}/WEB-INF/classes" /> + </jar> + + <!-- Create JAR file for webspace --> + <jar destfile="${dist.home}/webapp.jar" + basedir="${build.home}/webapps/${webappname}"> + <include name="user/**" /> + <include name="item/**" /> + <include name="portal/**" /> + <include name="course/**" /> + <include name="ADMIN/**" /> + <!-- + <include name="notfound.html.de" /> + <include name="noaccess.html.de" /> + <include name="noaccess-expired.html.de" /> + --> + </jar> </target> @@ -358,10 +375,24 @@ <target name="moduleimport" depends="compile"> <java fork="yes" classname="de.tum.cobricks.course.importModules" classpathref="exec.classpath"> - <arg line="build/webapps/ROOT/WEB-INF/conf Module_060510.xml"/> + <jvmarg value="-Dfile.encoding=utf-8"/> + <arg line="build/webapps/ROOT/WEB-INF/conf Module_060628.xml"/> + </java> +</target> + +<target name="m" depends="compile"> + <java fork="yes" classname="de.tum.cobricks.course.importModulesOld" + classpathref="exec.classpath"> + <jvmarg value="-Dfile.encoding=utf-8"/> + <arg line="build/webapps/ROOT/WEB-INF/conf NeueModule_060706.xml"/> </java> </target> +<target name="migrate" depends="compile"> + <java fork="yes" + classname="org.cobricks.util.migration.MigrationTool" maxmemory="512M" + classpathref="exec.classpath"> + </java> +</target> </project> - |
|
From: Michael K. <ko...@us...> - 2006-10-06 12:36:38
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv6058 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- build.xml 22 Sep 2006 17:37:47 -0000 1.5 +++ build.xml 6 Oct 2006 12:36:31 -0000 1.6 @@ -150,6 +150,9 @@ <include name="notfound.html.de" /> <include name="noaccess.html.de" /> <include name="noaccess-expired.html.de" /> + <include name="notfound.html.en" /> + <include name="noaccess.html.en" /> + <include name="noaccess-expired.html.en" /> --> </jar> |
|
From: Michael K. <ko...@us...> - 2006-11-24 08:00:28
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv30685 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- build.xml 6 Oct 2006 12:36:31 -0000 1.6 +++ build.xml 24 Nov 2006 08:00:21 -0000 1.7 @@ -142,11 +142,12 @@ <jar destfile="${dist.home}/webapp.jar" basedir="${build.home}/webapps/${webappname}"> <include name="user/**" /> - <include name="item/**" /> <include name="portal/**" /> - <include name="course/**" /> + <include name="myintum/kurs_verwaltung/**" /> <include name="ADMIN/**" /> <!-- + <include name="course/**" /> + <include name="item/**" /> <include name="notfound.html.de" /> <include name="noaccess.html.de" /> <include name="noaccess-expired.html.de" /> @@ -379,7 +380,7 @@ <java fork="yes" classname="de.tum.cobricks.course.importModules" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf Module_060628.xml"/> + <arg line="build/webapps/ROOT/WEB-INF/conf Module_061115a.xml"/> </java> </target> @@ -398,4 +399,13 @@ </java> </target> +<target name="courseoverviews" depends="compile"> + <java fork="yes" + classname="de.tum.cobricks.course.generateHTMLOverviews" maxmemory="512M" + classpathref="exec.classpath"> + <jvmarg value="-Dfile.encoding=utf-8"/> + <arg line="build/webapps/ROOT/WEB-INF/conf WS 2006 test"/> + </java> +</target> + </project> |
|
From: Michael K. <ko...@us...> - 2006-12-08 07:43:17
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv11276 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- build.xml 24 Nov 2006 08:00:21 -0000 1.7 +++ build.xml 8 Dec 2006 07:43:14 -0000 1.8 @@ -248,6 +248,10 @@ <copy todir="${build.home}/webapps/${webappname}"> <fileset dir="${web.home}"/> </copy> + <!-- Copy ADMIN pages --> + <copy todir="${build.home}/webapps/${webappname}/ADMIN"> + <fileset dir="${cobricks.home}/web/ADMIN"/> + </copy> <!-- copy Cobricks configuration --> <copy todir="${build.home}/webapps/${webappname}/WEB-INF/conf"> @@ -380,7 +384,7 @@ <java fork="yes" classname="de.tum.cobricks.course.importModules" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf Module_061115a.xml"/> + <arg line="build/webapps/ROOT/WEB-INF/conf Module_061129.xml"/> </java> </target> |
|
From: Michael K. <ko...@us...> - 2006-12-08 16:23:58
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv905 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- build.xml 8 Dec 2006 07:43:14 -0000 1.8 +++ build.xml 8 Dec 2006 16:23:54 -0000 1.9 @@ -141,20 +141,8 @@ <!-- Create JAR file for webspace --> <jar destfile="${dist.home}/webapp.jar" basedir="${build.home}/webapps/${webappname}"> - <include name="user/**" /> - <include name="portal/**" /> <include name="myintum/kurs_verwaltung/**" /> <include name="ADMIN/**" /> - <!-- - <include name="course/**" /> - <include name="item/**" /> - <include name="notfound.html.de" /> - <include name="noaccess.html.de" /> - <include name="noaccess-expired.html.de" /> - <include name="notfound.html.en" /> - <include name="noaccess.html.en" /> - <include name="noaccess-expired.html.en" /> - --> </jar> </target> |
|
From: Wolfgang W. <wo...@us...> - 2006-12-15 08:43:35
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv16039 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- build.xml 8 Dec 2006 16:23:54 -0000 1.9 +++ build.xml 15 Dec 2006 08:43:31 -0000 1.10 @@ -400,4 +400,13 @@ </java> </target> +<target name="courseoverviews2" depends="compile"> + <java fork="yes" + classname="de.tum.cobricks.course.generateHTMLOverviews2" maxmemory="512M" + classpathref="exec.classpath"> + <jvmarg value="-Dfile.encoding=utf-8"/> + <arg line="build/webapps/ROOT/WEB-INF/conf SS 2007 test"/> + </java> +</target> + </project> |
|
From: Wolfgang W. <wo...@us...> - 2006-12-15 12:06:54
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27551 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- build.xml 15 Dec 2006 08:43:31 -0000 1.10 +++ build.xml 15 Dec 2006 12:06:50 -0000 1.11 @@ -396,15 +396,6 @@ classname="de.tum.cobricks.course.generateHTMLOverviews" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf WS 2006 test"/> - </java> -</target> - -<target name="courseoverviews2" depends="compile"> - <java fork="yes" - classname="de.tum.cobricks.course.generateHTMLOverviews2" maxmemory="512M" - classpathref="exec.classpath"> - <jvmarg value="-Dfile.encoding=utf-8"/> <arg line="build/webapps/ROOT/WEB-INF/conf SS 2007 test"/> </java> </target> |
|
From: Michael K. <ko...@us...> - 2007-05-04 10:35:10
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21840 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- build.xml 15 Dec 2006 12:06:50 -0000 1.11 +++ build.xml 4 May 2007 10:35:06 -0000 1.12 @@ -361,6 +361,13 @@ <!-- =================== Client Applications ========================== --> +<target name="doit" depends="compile"> + <java fork="yes" classname="org.cobricks.util.doIt" + classpathref="exec.classpath"> + <arg line="-c ${web.home}/WEB-INF/conf"/> + </java> +</target> + <target name="cwall" depends="compile"> <java fork="yes" classname="org.cobricks.cwall.CWall" classpathref="exec.classpath"> @@ -400,4 +407,22 @@ </java> </target> +<target name="list" depends="compile"> + <java fork="yes" + classname="de.tum.cobricks.course.generateListDeputate" maxmemory="512M" + classpathref="exec.classpath"> + <jvmarg value="-Dfile.encoding=utf-8"/> + <arg line="build/webapps/ROOT/WEB-INF/conf SS 2007"/> + </java> +</target> + +<target name="delunivis" depends="compile"> + <java fork="yes" + classname="de.tum.cobricks.univis.deleteUnivIS" maxmemory="512M" + classpathref="exec.classpath"> + <jvmarg value="-Dfile.encoding=utf-8"/> + <arg line="-c ${web.home}/WEB-INF/conf -s 2007s"/> + </java> +</target> + </project> |
|
From: Wolfgang W. <wo...@us...> - 2007-07-17 12:45:04
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20860 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- build.xml 4 May 2007 10:35:06 -0000 1.12 +++ build.xml 17 Jul 2007 12:44:57 -0000 1.13 @@ -403,7 +403,7 @@ classname="de.tum.cobricks.course.generateHTMLOverviews" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf SS 2007 test"/> + <arg line="build/webapps/ROOT/WEB-INF/conf WS 2007 test"/> </java> </target> @@ -412,7 +412,16 @@ classname="de.tum.cobricks.course.generateListDeputate" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf SS 2007"/> + <arg line="build/webapps/ROOT/WEB-INF/conf WS 2007"/> + </java> +</target> + +<target name="list2" depends="compile"> + <java fork="yes" + classname="de.tum.cobricks.course.generateListExams" maxmemory="512M" + classpathref="exec.classpath"> + <jvmarg value="-Dfile.encoding=utf-8"/> + <arg line="build/webapps/ROOT/WEB-INF/conf WS 2007"/> </java> </target> |
|
From: Wolfgang W. <wo...@us...> - 2008-05-20 14:07:13
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv15349 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- build.xml 17 Jul 2007 12:44:57 -0000 1.13 +++ build.xml 20 May 2008 14:07:05 -0000 1.14 @@ -403,7 +403,7 @@ classname="de.tum.cobricks.course.generateHTMLOverviews" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf WS 2007 test"/> + <arg line="build/webapps/ROOT/WEB-INF/conf SS 2008 test"/> </java> </target> @@ -412,7 +412,7 @@ classname="de.tum.cobricks.course.generateListDeputate" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf WS 2007"/> + <arg line="build/webapps/ROOT/WEB-INF/conf SS 2008"/> </java> </target> @@ -421,7 +421,7 @@ classname="de.tum.cobricks.course.generateListExams" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf WS 2007"/> + <arg line="build/webapps/ROOT/WEB-INF/conf SS 2008"/> </java> </target> |
|
From: Wolfgang W. <wo...@us...> - 2008-07-14 10:49:16
|
Update of /cvsroot/cobricks/drehscheibe-in In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv17718 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- build.xml 20 May 2008 14:07:05 -0000 1.14 +++ build.xml 14 Jul 2008 10:49:12 -0000 1.15 @@ -403,7 +403,7 @@ classname="de.tum.cobricks.course.generateHTMLOverviews" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf SS 2008 test"/> + <arg line="build/webapps/ROOT/WEB-INF/conf WS 2008 test"/> </java> </target> @@ -421,7 +421,7 @@ classname="de.tum.cobricks.course.generateListExams" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf SS 2008"/> + <arg line="build/webapps/ROOT/WEB-INF/conf WS 2008"/> </java> </target> |
|
From: Wolfgang W. <wo...@us...> - 2009-01-09 10:19:16
|
Update of /cvsroot/cobricks/drehscheibe-in In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14989 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- build.xml 14 Jul 2008 10:49:12 -0000 1.15 +++ build.xml 9 Jan 2009 10:19:09 -0000 1.16 @@ -412,7 +412,7 @@ classname="de.tum.cobricks.course.generateListDeputate" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf SS 2008"/> + <arg line="build/webapps/ROOT/WEB-INF/conf WS 2008"/> </java> </target> |
|
From: Wolfgang W. <wo...@us...> - 2009-01-20 07:38:43
|
Update of /cvsroot/cobricks/drehscheibe-in In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31390 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- build.xml 9 Jan 2009 10:19:09 -0000 1.16 +++ build.xml 20 Jan 2009 07:38:31 -0000 1.17 @@ -403,7 +403,7 @@ classname="de.tum.cobricks.course.generateHTMLOverviews" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf WS 2008 test"/> + <arg line="build/webapps/ROOT/WEB-INF/conf SS 2009 test"/> </java> </target> @@ -421,7 +421,7 @@ classname="de.tum.cobricks.course.generateListExams" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf WS 2008"/> + <arg line="build/webapps/ROOT/WEB-INF/conf SS 2009"/> </java> </target> |
|
From: Wolfgang W. <wo...@us...> - 2009-08-07 06:17:02
|
Update of /cvsroot/cobricks/drehscheibe-in In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23623 Modified Files: build.xml Log Message: Index: build.xml =================================================================== RCS file: /cvsroot/cobricks/drehscheibe-in/build.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- build.xml 20 Jan 2009 07:38:31 -0000 1.17 +++ build.xml 7 Aug 2009 06:16:52 -0000 1.18 @@ -412,7 +412,7 @@ classname="de.tum.cobricks.course.generateListDeputate" maxmemory="512M" classpathref="exec.classpath"> <jvmarg value="-Dfile.encoding=utf-8"/> - <arg line="build/webapps/ROOT/WEB-INF/conf WS 2008"/> + <arg line="build/webapps/ROOT/WEB-INF/conf SS 2009"/> </java> </target> |