Changeset 11837 for trunk/Bui_scServer


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

debug genDeploy FTP; review libext

Location:
trunk/Bui_scServer
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • 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"/> 
Note: See TracChangeset for help on using the changeset viewer.