When I run Petals BPM client in Firefox browser, the port # is defaulted to 8888, how can I change that port #?
For example, the client demo URL is: http://127.0.0.1:8888/index.html?gwt.codesvr=127.0.0.1:9997 How do I change the URl to: http://127.0.0.1:9999/index.html?gwt.codesvr=127.0.0.1:9997 |
Hello petals_ez,
If you are using maven to run GWT hosted mode, you simply have to add <port>XXXX</port> in the configuration of the gwt maven plugin. For example, if you want to run petalsbpm-client on port 9999, add the following to its pom.xml : <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <configuration> <port>9999</port> </configuration> </plugin> </plugins> </build> Details on the configuration of the gwt maven plugin can be found there : http://mojo.codehaus.org/gwt-maven-plugin/run-mojo.html If you are not using maven, I am afraid I cannot help you because we always use maven to run our gwt projects. Hope it helps, Graham Crosmarie |
Hello Graham,
Thank you very much for your help! However, I am getting build errors after SVN updating geasytools, geasywebeditor, and petalsbpm projects. The geasytools, geasywebeditor projects can be built successfully, but petalsbpm project has build errors. Can you help? Thanks. Following are the errors: ...... [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[21,55] package com.ebm websourcing.geasytools.webeditor.api.core does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[22,57] package com.ebm websourcing.geasytools.webeditor.api.plugin does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[23,63] package com.ebm websourcing.geasytools.webeditor.impl.client.core does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[24,64] package com.ebm websourcing.geasytools.webeditor.ui.component.menu does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[25,54] package com.ebm websourcing.geasytools.webeditor.ui.core does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[26,57] package com.ebm websourcing.petalsbpm.client.component.bpmn does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[27,57] package com.ebm websourcing.petalsbpm.client.component.bpmn does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[28,79] package com.ebm websourcing.petalsbpm.client.plugin.bpmn.descriptive.choreography does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[29,80] package com.ebm websourcing.petalsbpm.client.plugin.bpmn.descriptive.collaboration does not exis t [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[30,74] package com.ebm websourcing.petalsbpm.client.plugin.bpmn.descriptive.process does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[31,79] package com.ebm websourcing.petalsbpm.client.plugin.bpmn.executable.collaboration does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[32,73] package com.ebm websourcing.petalsbpm.client.plugin.bpmn.executable.process does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[37,32] package com.gwt ext.client.widgets does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[38,32] package com.gwt ext.client.widgets does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[42,9] cannot find symb ol symbol : class GWTExtMenuComponentButton location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[73,25] cannot find sym bol symbol : class IEditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[79,33] cannot find sym bol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClientNonCompatibleBrowser.java:[28 ,2] cannot find symbol symbol : variable MessageBox location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClientNonComp atibleBrowser [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[45,8] cannot find symb ol symbol : class EditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[45,40] cannot find sym bol symbol : class EditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[46,8] cannot find symb ol symbol : class Panel location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[46,23] cannot find sym bol symbol : class Panel location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[48,6] cannot find symb ol symbol : class Viewport location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[50,10] cannot find sym bol symbol : class IPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[50,41] cannot find sym bol symbol : class IPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[51,18] cannot find sym bol symbol : class DescriptiveBPMNPrivateProcessPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[52,18] cannot find sym bol symbol : class ExecutableBPMNPrivateProcessPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[53,18] cannot find sym bol symbol : class DescriptiveBPMNCollaborationPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[54,18] cannot find sym bol symbol : class ExecutableBPMNCollaborationPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[55,18] cannot find sym bol symbol : class BPMNChoreographyPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[62,3] cannot find symb ol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[62,29] cannot find sym bol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[65,23] cannot find sym bol symbol : class WelcomeComponent location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[74,22] cannot find sym bol symbol : class GWTExtMenuComponentButton location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\eb mwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[80,36] cannot find sym bol symbol : class BPMNDeploymentButtonClickHandler location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [INFO] 36 errors [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClientNonCompatibleBrowser.java:[20,32] pac kage com.gwtext.client.widgets does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[21,55] package com.ebmwebsourc ing.geasytools.webeditor.api.core does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[22,57] package com.ebmwebsourc ing.geasytools.webeditor.api.plugin does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[23,63] package com.ebmwebsourc ing.geasytools.webeditor.impl.client.core does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[24,64] package com.ebmwebsourc ing.geasytools.webeditor.ui.component.menu does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[25,54] package com.ebmwebsourc ing.geasytools.webeditor.ui.core does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[26,57] package com.ebmwebsourc ing.petalsbpm.client.component.bpmn does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[27,57] package com.ebmwebsourc ing.petalsbpm.client.component.bpmn does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[28,79] package com.ebmwebsourc ing.petalsbpm.client.plugin.bpmn.descriptive.choreography does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[29,80] package com.ebmwebsourc ing.petalsbpm.client.plugin.bpmn.descriptive.collaboration does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[30,74] package com.ebmwebsourc ing.petalsbpm.client.plugin.bpmn.descriptive.process does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[31,79] package com.ebmwebsourc ing.petalsbpm.client.plugin.bpmn.executable.collaboration does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[32,73] package com.ebmwebsourc ing.petalsbpm.client.plugin.bpmn.executable.process does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[37,32] package com.gwtext.clie nt.widgets does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[38,32] package com.gwtext.clie nt.widgets does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[42,9] cannot find symbol symbol : class GWTExtMenuComponentButton location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[73,25] cannot find symbol symbol : class IEditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[79,33] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClientNonCompatibleBrowser.java:[28,2] cann ot find symbol symbol : variable MessageBox location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClientNonComp atibleBrowser \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[45,8] cannot find symbol symbol : class EditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[45,40] cannot find symbol symbol : class EditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[46,8] cannot find symbol symbol : class Panel location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[46,23] cannot find symbol symbol : class Panel location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[48,6] cannot find symbol symbol : class Viewport location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[50,10] cannot find symbol symbol : class IPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[50,41] cannot find symbol symbol : class IPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[51,18] cannot find symbol symbol : class DescriptiveBPMNPrivateProcessPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[52,18] cannot find symbol symbol : class ExecutableBPMNPrivateProcessPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[53,18] cannot find symbol symbol : class DescriptiveBPMNCollaborationPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[54,18] cannot find symbol symbol : class ExecutableBPMNCollaborationPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[55,18] cannot find symbol symbol : class BPMNChoreographyPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[62,3] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[62,29] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[65,23] cannot find symbol symbol : class WelcomeComponent location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[74,22] cannot find symbol symbol : class GWTExtMenuComponentButton location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsour cing\petalsbpm\client\core\BPMNEditorClient.java:[80,36] cannot find symbol symbol : class BPMNDeploymentButtonClickHandler location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 4 minutes 45 seconds [INFO] Finished at: Mon Jul 09 11:24:08 PDT 2012 [INFO] Final Memory: 266M/554M [INFO] ------------------------------------------------------------------------ |
The trunk version of PetalsBPM encountered some compilation problems lately because of some ground operations that were made on our forge and on our maven repositories.
But now these problems should be solved. I managed to recompile geasytools, geasywebeditor and petalsbpm with an empty M2 repo. So an update of the code should solve your compilation problems (at least I hope so :-) ). |
Thanks, but I am still getting errors for petalsbpm-client.
Below is the build errors: ...... [INFO] ------------------------------------------------------------------------ [INFO] Building petalsbpm-client [INFO] task-segment: [install] [INFO] ------------------------------------------------------------------------ [INFO] [buildnumber:create {execution: default}] [INFO] Checking for local modifications: skipped. [INFO] Updating project files from SCM: skipped. [INFO] Executing: cmd.exe /X /C "svn --non-interactive info" [INFO] Working directory: C:\Users\jh527c\workspace3\petalsbpm\petalsbpm-client [INFO] Storing buildNumber: undefined at timestamp: 1341943362092 [INFO] Executing: cmd.exe /X /C "svn --non-interactive info" [INFO] Working directory: C:\Users\jh527c\workspace3\petalsbpm\petalsbpm-client [INFO] Storing buildScmBranch: UNKNOWN_BRANCH [INFO] [resources:resources {execution: default-resources}] [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] Copying 4 resources [INFO] [compiler:compile {execution: default-compile}] [INFO] Compiling 2 source files to C:\Users\jh527c\workspace3\petalsbpm\petalsbpm-client\target\petalsbpm-client-1.0-SNAPSHOT\WEB-INF\classes [INFO] ------------------------------------------------------------- [ERROR] COMPILATION ERROR : 2:23 PM 7/10/2012 [INFO] ------------------------------------------------------------- [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClientNonCompatibleBrowser.java:[20,32] package com.gwtext.client.widgets does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[21,55] package com.ebmwebsourcing.geasytools.webeditor.api.core does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[22,57] package com.ebmwebsourcing.geasytools.webeditor.api.plugin does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[23,63] package com.ebmwebsourcing.geasytools.webeditor.impl.client.core does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[24,64] package com.ebmwebsourcing.geasytools.webeditor.ui.component.menu does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[25,54] package com.ebmwebsourcing.geasytools.webeditor.ui.core does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[26,57] package com.ebmwebsourcing.petalsbpm.client.component.bpmn does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[27,57] package com.ebmwebsourcing.petalsbpm.client.component.bpmn does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[28,79] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.descriptive.choreography does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[29,80] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.descriptive.collaboration does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[30,74] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.descriptive.process does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[31,79] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.executable.collaboration does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[32,73] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.executable.process does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[37,32] package com.gwtext.client.widgets does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[38,32] package com.gwtext.client.widgets does not exist [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[42,9] cannot find symbol symbol : class GWTExtMenuComponentButton location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[73,25] cannot find symbol symbol : class IEditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[79,33] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClientNonCompatibleBrowser.java:[28,2] cannot find symbol symbol : variable MessageBox location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClientNonCompatibleBrowser [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[45,8] cannot find symbol symbol : class EditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[45,40] cannot find symbol symbol : class EditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[46,8] cannot find symbol symbol : class Panel location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[46,23] cannot find symbol symbol : class Panel location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[48,6] cannot find symbol symbol : class Viewport location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[50,10] cannot find symbol symbol : class IPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[50,41] cannot find symbol symbol : class IPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[51,18] cannot find symbol symbol : class DescriptiveBPMNPrivateProcessPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[52,18] cannot find symbol symbol : class ExecutableBPMNPrivateProcessPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[53,18] cannot find symbol symbol : class DescriptiveBPMNCollaborationPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[54,18] cannot find symbol symbol : class ExecutableBPMNCollaborationPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[55,18] cannot find symbol symbol : class BPMNChoreographyPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[62,3] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[62,29] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[65,23] cannot find symbol symbol : class WelcomeComponent location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[74,22] cannot find symbol symbol : class GWTExtMenuComponentButton location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [ERROR] \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[80,36] cannot find symbol symbol : class BPMNDeploymentButtonClickHandler location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [INFO] 36 errors [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClientNonCompatibleBrowser.java:[20,32] package com.gwtext.client.widgets does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[21,55] package com.ebmwebsourcing.geasytools.webeditor.api.core does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[22,57] package com.ebmwebsourcing.geasytools.webeditor.api.plugin does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[23,63] package com.ebmwebsourcing.geasytools.webeditor.impl.client.core does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[24,64] package com.ebmwebsourcing.geasytools.webeditor.ui.component.menu does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[25,54] package com.ebmwebsourcing.geasytools.webeditor.ui.core does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[26,57] package com.ebmwebsourcing.petalsbpm.client.component.bpmn does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[27,57] package com.ebmwebsourcing.petalsbpm.client.component.bpmn does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[28,79] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.descriptive.choreography does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[29,80] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.descriptive.collaboration does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[30,74] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.descriptive.process does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[31,79] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.executable.collaboration does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[32,73] package com.ebmwebsourcing.petalsbpm.client.plugin.bpmn.executable.process does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[37,32] package com.gwtext.client.widgets does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[38,32] package com.gwtext.client.widgets does not exist \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[42,9] cannot find symbol symbol : class GWTExtMenuComponentButton location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[73,25] cannot find symbol symbol : class IEditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[79,33] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClientNonCompatibleBrowser.java:[28,2] cannot find symbol symbol : variable MessageBox location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClientNonCompatibleBrowser \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[45,8] cannot find symbol symbol : class EditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[45,40] cannot find symbol symbol : class EditorView location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[46,8] cannot find symbol symbol : class Panel location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[46,23] cannot find symbol symbol : class Panel location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[48,6] cannot find symbol symbol : class Viewport location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[50,10] cannot find symbol symbol : class IPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[50,41] cannot find symbol symbol : class IPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[51,18] cannot find symbol symbol : class DescriptiveBPMNPrivateProcessPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[52,18] cannot find symbol symbol : class ExecutableBPMNPrivateProcessPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[53,18] cannot find symbol symbol : class DescriptiveBPMNCollaborationPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[54,18] cannot find symbol symbol : class ExecutableBPMNCollaborationPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[55,18] cannot find symbol symbol : class BPMNChoreographyPlugin location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[62,3] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[62,29] cannot find symbol symbol : class EditorController location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[65,23] cannot find symbol symbol : class WelcomeComponent location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[74,22] cannot find symbol symbol : class GWTExtMenuComponentButton location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient \Users\jh527c\workspace3\petalsbpm\petalsbpm-client\src\main\java\com\ebmwebsourcing\petalsbpm\client\core\BPMNEditorClient.java:[80,36] cannot find symbol symbol : class BPMNDeploymentButtonClickHandler location: class com.ebmwebsourcing.petalsbpm.client.core.BPMNEditorClient [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 48 seconds [INFO] Finished at: Tue Jul 10 11:02:42 PDT 2012 [INFO] Final Memory: 109M/543M [INFO] ------------------------------------------------------------------------ |
Free forum by Nabble | Edit this page |