TOC PREV NEXT INDEX




Edits to the build.xml and build.properties files


The build.xml and build.properties files are located in:

<icefaces-install-dir>/tutorial/tabbedPane-icefaces/.
 
1. The project name is set.
<project name="tabbedpane-exercise" default="build.war"> 
 
2. The tomcat.port property is set to match the tomcat port. The default tomcat port is 8080.
<property name="tomcat.port" value="8080"/> 
 
3. The lib.dir property is modified.
<property name="lib.dir" location="../../lib"/> 
 
4. The resource.src and resource.dist properties are modified.
<property name="resource.src" location="src/com/icesoft/tutorial/resource"/> 
 
<property name="resource.dist" 
 
location="${build.classes.dir}/com/icesoft/tutorial/resource"/> 
 

 
5. The icefaces.jar property is modified.
<property name="icefaces.jar" location="../../lib/icefaces.jar"/> 
 

The Direct-to-DOM Enabled Renderer version of the MyFaces TabbedPane sample application can now be deployed.



Copyright 2005. ICEsoft Technologies, Inc.
http://www.icesoft.com

TOC PREV NEXT INDEX