Changeset 11837


Ignore:
Timestamp:
10/07/08 13:27:27 (4 years ago)
Author:
anp
Message:

debug genDeploy FTP; review libext

Location:
trunk
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Bui_Core/xBuildServer_SCserver.xml

    r11095 r11837  
    137137                <copy file="${ant.nodeps.jar}" tofile="${destlibext}/ant.nodeps.jar" preservelastmodified="true" failonerror="true"/> 
    138138                <copy file="${ant.launcher.jar}" tofile="${destlibext}/ant.launcher.jar" preservelastmodified="true" failonerror="true"/> 
     139                <copy file="${ant.contrib.jar}" tofile="${destlibext}/ant.contrib.jar" preservelastmodified="true" failonerror="true"/> 
     140                <copy file="${ant.xmltask.jar}" tofile="${destlibext}/ant.xmltask.jar" preservelastmodified="true" failonerror="true"/> 
     141                <copy file="${ant.trax.jar}" tofile="${destlibext}/ant.trax.jar" preservelastmodified="true" failonerror="true"/> 
     142                <copy file="${ant.bsf.jar}" tofile="${destlibext}/ant.bsf.jar" preservelastmodified="true" failonerror="true"/> 
    139143                <copy file="${bsf.jar}" tofile="${destlibext}/bsf.jar" preservelastmodified="true" failonerror="true"/> 
    140144                <copy file="${net.jar}" tofile="${destlibext}/net.jar" preservelastmodified="true" failonerror="true"/> 
    141145                <copy file="${beanshell.jar}" tofile="${destlibext}/beanshell.jar" preservelastmodified="true"/> 
     146                <copy file="${logging.jar}" tofile="${destlibext}/logging.jar" preservelastmodified="true"/> 
    142147                <copy file="${fileupload.jar}" tofile="${destlibext}/fileupload.jar" preservelastmodified="true"/> 
    143148                <copy file="${webmacro.jar}" tofile="${destlibext}/webmacro.jar" preservelastmodified="true"/> 
     
    148153                <copy file="${oo.unofinder.jar}" tofile="${destjardir}/unofinder.jar" preservelastmodified="true"/><!-- FIXME : à personnaliser --> 
    149154                <copy file="${jing.res.jar}" tofile="${destjardir}/jingrelaxng.jar" preservelastmodified="true" failonerror="true"/><!-- FIXME : à personnaliser --> 
    150                 <copy file="${ant.contrib.jar}" tofile="${destjardir}/ant.contrib.jar" preservelastmodified="true" failonerror="true"/> 
    151                 <copy file="${ant.xmltask.jar}" tofile="${destjardir}/ant.xmltask.jar" preservelastmodified="true" failonerror="true"/> 
    152155                <copy file="${scxmlserializer.res.jar}" tofile="${destjardir}/scxmlserializer.jar" preservelastmodified="true" failonerror="true"/> 
    153156                <copy file="${scxmlserializer.res.jar}" tofile="${destjardir}/scxmlserializer.jar" preservelastmodified="true" failonerror="true"/> 
  • trunk/Bui_scServer/_lin/resources/buiWebApp.sh

    r11446 r11837  
    2828echo "Compilation, scserver" 
    2929 
    30 $vJavaCmd -classpath "libext/ant.jar:libext/ant.nodeps.jar:libext/ant.launcher.jar:webApp/WEB-INF/lib/ant.contrib.jar" -Xmx150m org.apache.tools.ant.Main -buildfile build.xml 
     30$vJavaCmd -classpath "libext/ant.jar:libext/ant.nodeps.jar:libext/ant.launcher.jar:libext/ant.contrib.jar" -Xmx150m org.apache.tools.ant.Main -buildfile build.xml 
  • trunk/Bui_scServer/_win/resources/buiWebApp.bat

    r11415 r11837  
    11echo "Compilation, scserver" 
    2 java.exe -classpath "libext\ant.jar;libext\ant.nodeps.jar;libext\ant.launcher.jar;webApp\WEB-INF\lib\ant.contrib.jar" -Xmx150m org.apache.tools.ant.Main -buildfile build.xml 
     2java.exe -classpath "libext\ant.jar;libext\ant.nodeps.jar;libext\ant.launcher.jar;libext\ant.contrib.jar" -Xmx150m org.apache.tools.ant.Main -buildfile build.xml 
  • trunk/Bui_scServer/build.xml

    r11072 r11837  
    8484server.work.path=${server.work.path} 
    8585server.url=${server.url} 
    86          
     86 
     87### 
     88# Packaging 
     89server.libExt.includeInWebapp=true 
     90                         
    8791### 
    8892# Configuration des applications tierces 
  • trunk/Bui_scServer/resources/genBui/build.xml

    r11794 r11837  
    1313        <property name="server.conf.repos.asp.domain.path" value="${server.work.path}/domains"/> 
    1414        <property name="server.conf.repos.asp.templateDomainKey" value="${server.conf.repos.asp.templateDomainKey}"/> 
     15        <property name="server.libext.path" value="${basedir}/libext"/> 
    1516         
    1617                         
     
    5859                <replaceregexp file="##destwebappdirname##/conf/init.xml" match="##scServer_conf_repos_asp_domain_path##" replace="${server.conf.repos.asp.domain.path}" byline="yes" flags="g"/> 
    5960                <replaceregexp file="##destwebappdirname##/conf/init.xml" match="##server_conf_repos_asp_templateDomainKey##" replace="${server.conf.repos.asp.templateDomainKey}" byline="yes" flags="g"/> 
     61                <!-- Copie des libExt dans la webApp --> 
     62                <if> 
     63                        <equals arg1="${server.libExt.includeInWebapp}" arg2="true"/> 
     64                        <then> 
     65                                <copy todir="##destwebappdirname##/WEB-INF/lib"> 
     66                                        <fileset dir="${server.libext.path}" includes="*.jar"/> 
     67                                </copy> 
     68                        </then> 
     69                </if> 
    6070                <!-- # création du war --> 
    6171                <ant target="xCreateWar"/> 
  • trunk/Lib_Java/build.properties

    r11097 r11837  
    66ant.nodeps.jar=${libjavadir}/ant/ant-nodeps.jar 
    77ant.contrib.jar=${libjavadir}/ant/ant-contrib.jar 
     8ant.trax.jar=${libjavadir}/ant/ant-trax.jar 
    89ant.xmltask.jar=${libjavadir}/ant/xmltask.jar 
     10ant.bsf.jar=${libjavadir}/ant/ant-apache-bsf.jar 
    911avalon.jar=${libjavadir}/fop/avalon-framework.jar 
    1012batik.jar=${libjavadir}/batik/batik.jar 
Note: See TracChangeset for help on using the changeset viewer.