Changeset 11837 for trunk/Bui_scServer
- Timestamp:
- 10/07/08 13:27:27 (4 years ago)
- Location:
- trunk/Bui_scServer
- Files:
-
- 4 edited
-
_lin/resources/buiWebApp.sh (modified) (1 diff)
-
_win/resources/buiWebApp.bat (modified) (1 diff)
-
build.xml (modified) (1 diff)
-
resources/genBui/build.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Bui_scServer/_lin/resources/buiWebApp.sh
r11446 r11837 28 28 echo "Compilation, scserver" 29 29 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.xml30 $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 1 1 echo "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.xml2 java.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 84 84 server.work.path=${server.work.path} 85 85 server.url=${server.url} 86 86 87 ### 88 # Packaging 89 server.libExt.includeInWebapp=true 90 87 91 ### 88 92 # Configuration des applications tierces -
trunk/Bui_scServer/resources/genBui/build.xml
r11794 r11837 13 13 <property name="server.conf.repos.asp.domain.path" value="${server.work.path}/domains"/> 14 14 <property name="server.conf.repos.asp.templateDomainKey" value="${server.conf.repos.asp.templateDomainKey}"/> 15 <property name="server.libext.path" value="${basedir}/libext"/> 15 16 16 17 … … 58 59 <replaceregexp file="##destwebappdirname##/conf/init.xml" match="##scServer_conf_repos_asp_domain_path##" replace="${server.conf.repos.asp.domain.path}" byline="yes" flags="g"/> 59 60 <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> 60 70 <!-- # création du war --> 61 71 <ant target="xCreateWar"/>
Note: See TracChangeset
for help on using the changeset viewer.