[jbosstools-issues] [JBoss JIRA] (JBIDE-11236) gwt-kitchensink not working when deployed from within JBT
Snjezana Peco (JIRA)
jira-events at lists.jboss.org
Sun Mar 11 10:40:47 EDT 2012
[ https://issues.jboss.org/browse/JBIDE-11236?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12675746#comment-12675746 ]
Snjezana Peco commented on JBIDE-11236:
---------------------------------------
M2e isn't configured correctly within this project example.
The compile goal of the gwt-maven-plugin isn't called.
A workaround:
- open gwt-kitchensink/pom.xml
- find the m2e configuration for gwt-maven-plugin
The code on the lines 391-393 looks as follows:
{code}
<goals>
<goal>resources</goal>
</goals>
{code}
Add the '<goal>compile</goal>' line:
{code}
<goals>
<goal>resources</goal>
<goal>compile</goal>
</goals>
{code}
- call Maven>Update Project Configuration if required
- redeploy the project
- start the application
> gwt-kitchensink not working when deployed from within JBT
> ---------------------------------------------------------
>
> Key: JBIDE-11236
> URL: https://issues.jboss.org/browse/JBIDE-11236
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: project-examples
> Affects Versions: 3.3.0.Beta1
> Environment: JBT 3.3.0.Beta1e on eclipseEE indigo SR2
> Fedora 16
> Oracle java 1.7.0_02-b13 64b
> Reporter: Radim Hopp
> Assignee: Snjezana Peco
> Fix For: 3.3.0.Beta1
>
> Attachments: gwt-kitchensink.png
>
>
> GWT Web Project is not working, when deployed from within JBDS or JBT (using steps described in README.md).
> When deployed, only header, footed and the right "Find out more" panel is shown.
> When deployed from command line using `mvn package` -> `mvn jboss-as:deploy` everything is working as expected.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jbosstools-issues
mailing list