Changes between Version 1 and Version 2 of Eclipse


Ignore:
Timestamp:
01/15/10 18:03:48 (14 years ago)
Author:
vijay
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Eclipse

    v1 v2  
    11'''HOW TO START MARY FROM ECLIPSE''' 
    22 
    3 '''        Initial Setup:''' 
     3'''''Initial Setup:''''' 
    44 
    5  * Install JDK 1.5 and JRE 1.5 in         your system from http://java.sun.com/ 
     5 * Install JDK 1.5 and JRE 1.5 in your system from http://java.sun.com/ 
    66 
    7  * Download Eclipse Classic from         !http://www.eclipse.org/downloads/ 
     7 * Download Eclipse Classic from link: http://www.eclipse.org/downloads/ 
    88 
    9  * Install the  subversion(svn)         Eclipse plugin by following the link:         !http://www.eclipse.org/subversive/documentation/gettingStarted/aboutSubversive/install.php 
     9 * Install the  subversion(svn) Eclipse plugin by following the link: http://www.eclipse.org/subversive/documentation/gettingStarted/aboutSubversive/install.php 
    1010 
    11 '''How to import Mary         into Eclipse:''' 
     11'''''How to import Mary into Eclipse:''''' 
    1212 
    13 When ready with all setups installed         on your system, 
     13When ready with all setups installed on your system, 
    1414 
    1515 * Open Eclipse 
    1616 
    17  * Then click on File>Import>SVN 
     17 * Then click on '''File>Import>SVN''' 
    1818 
    19  * Under SVN select “Project from         SVN” and next. 
     19 * Under SVN select '''“Project from SVN”''' and next 
    2020 
    21  * Create new repository location so         that you can checkout a project from SVN repository. 
     21 * Create new repository location so that you can checkout a project from SVN repository. 
    2222 
    23  * Click next and type the link          !https://mary.opendfki.de/repos/  under URL column and click next 
     23 * Click next and type the link https://mary.opendfki.de/repos/  under URL column and click next 
    2424 
    25  * Now to select a resourse, which         will be checked out on a project, please type         !https://mary.opendfki.de/repos/trunk  under URL tab and then click        next and finish. 
     25 * Now to select a resourse, which will be checked out on a project, please type https://mary.opendfki.de/repos/trunk  under URL tab and then click next and finish. 
    2626 
    27  * By this time you should be able to         see Open Mary in Eclipse 
     27 * By this time you should be able to see Open Mary in Eclipse 
    2828 
    29 '''Few Mandatory Eclipse Configurations: ''' 
     29'''''Few Mandatory Eclipse Configurations: ''''' 
    3030 
    3131Under 'Menu', Goto Windows →  Preferences, try the following changes: 
    3232 
    33  * Java         version used: "Java"->"installed JREs" must        be JAVA 1.5 
     33 * Java version used: '''"Java"->"installed JREs"''' must be JAVA 1.5 
    3434 
    35  * Open Eclipse → File →  Run as         → Run configuration: 
     35 * Open '''Eclipse → File →  Run as → Run configuration''': 
    3636 
    37  * Click "New" in order to         add a Mary process under Java Application tab. Now provide the        following information: 
     37 * Click '''"New"''' in order to add a Mary process under Java Application tab. Now provide the following information: 
    3838 
    39  * Name=Mary 
     39 * '''Name=Mary''' 
    4040 
    41  * In "Main" Tab → "Main         class"= marytts.server.Mary;  “Project”= !OpenMary 
     41 * In '''"Main", Tab → "Main class"= marytts.server.Mary;  “Project”= !OpenMary''' 
    4242 
    43  * In the "Arguments" tab,         add the following lines into the "VM Arguments" field: 
     43 * In the '''"Arguments"''' tab, add the following lines into the '''"VM Arguments"''' field: 
    4444 
    45           -Xmx256m -Dmary.base=$MARY_BASE -ea 
     45{{{ 
     46        -Xmx256m -Dmary.base=${workspace_loc:OpenMary} -ea 
     47}}} 
     48 * For debugging informations displayed in Eclipse, you also have to add the following: 
    4649 
    47  * For debugging informations         displayed in Eclipse, you also have to add the following: 
     50{{{ 
     51         -Dlog.tofile=false -Dlog.level=debug 
     52}}} 
     53 * Click "Apply" to save these settings. 
    4854 
    49          -Dlog.tofile=false -Dlog.level=debug 
    50  
    51 In the end replace “$MARY_BASE” with the current path of the installed openmary(eg:         “home/user/workspace/openmary” if using Linux) and make sure that the path name is under         inverted commas. 
    52  
    53  * Click "Apply" to save         these settings. 
    54  
    55  * Run it from Run configuration         window. It should run by this time. 
     55 * Run it from Run configuration window. It should run by this time. 
    5656 
    5757If you want to start a MARY Client, open following link in web browser, 
    5858 
    59 !http://HostName:59125/ (!HostName = MARY Server running system); 
     59  http://HostName:59125/ 
    6060 
    61 Ex: !http://localhost:59125/) 
     61{{{ 
     62         (!HostName = MARY Server running system);Ex: !http://localhost:59125/) 
     63}}}