Changes between Version 13 and Version 14 of Devel/Setup
- Timestamp:
- 07/03/07 11:11:31 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Devel/Setup
v13 v14 51 51 52 52 = Build & Debug (with Eclipse) = 53 1. Install GWT (Google Web Toolkit. version 1.4.10 or higher)54 2. In Window->Preference->Java->Classpath Variables, add a new variable as follows:53 1. Install GWT (Google Web Toolkit. version 1.4.10 or higher) 54 1. In Window->Preference->Java->Classpath Variables, add a new variable as follows: 55 55 {{{ 56 56 GWT_HOME=(your GWT installation folder) 57 57 }}} 58 3. (debug) launch Debug -> GenomeBrowser_gwtshell, which displays GWT debug shell and58 1. (debug) launch Debug -> GenomeBrowser_gwtshell, which displays GWT debug shell and 59 59 genome browser interface. 60 60 61 61 = Build (from command line) = 62 62 63 1. Download the Google Web Toolkit from the web. Version 1.4.10 or higher is required. 64 2. Copy 'build.properties.sample' to 'build.properties' 65 3. Open the 'build.property' file, then change the gwt.home variable to the path of your GWT (Google Web Toolkit) folder, 66 and comment out appropriate 'gwt.dev' lines to select GWT develeopement library on your OS. 67 - e.g. (in Windows) 63 1. Download the Google Web Toolkit from the web. Version 1.4.10 or higher is required. 64 1. Copy 'build.properties.sample' to 'build.properties' 65 1. Open the 'build.property' file, then change the gwt.home variable to the path of your GWT (Google Web Toolkit) folder, and comment out appropriate 'gwt.dev' lines to select GWT develeopement library on your OS. - e.g. (in Windows) 68 66 {{{ 69 67 gwt.home=C:/(somewhere in your PC)/gwt-windows-1.4.10 … … 72 70 #gwt.dev=gwt-dev-linux.jar 73 71 }}} 74 4.72 1. 75 73 {{{ 76 74 > ant compileJs 77 75 }}} 78 5. Open www/org.utgenome.gwt.utgb.UTGB/UTGB.html in your web browser (IE, Firefox, etc.)76 1. Open www/org.utgenome.gwt.utgb.UTGB/UTGB.html in your web browser (IE, Firefox, etc.) 79 77 80 78 = Deploy = 81 79 82 1. Install Tomcat 5.0 (or higher) Java web server.83 2. Edit your build.properties file, and modify the following variables:80 1. Install Tomcat 5.0 (or higher) Java web server. 81 1. Edit your build.properties file, and modify the following variables: 84 82 {{{ 85 83 TOMCAT_HOME=(Tomcat Installation folder) … … 88 86 tomcat.manager.password=(tomcat manager password) 89 87 }}} 90 91 3. Set up GWT as described above (the section on build from command line) 92 4. 88 1. Set up GWT as described above (the section on build from command line) 89 1. 93 90 {{{ 94 91 > ant deploy