[JBoss JIRA] (JBIDE-14726) Cannot run Cordova project on iOS Emulator
by Gorkem Ercan (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14726?page=com.atlassian.jira.plugi... ]
Gorkem Ercan commented on JBIDE-14726:
--------------------------------------
Just released a possible fix for this on the nightly builds, can you possibly try the nightlies as I am not able to create the exact same case over here.
> Cannot run Cordova project on iOS Emulator
> ------------------------------------------
>
> Key: JBIDE-14726
> URL: https://issues.jboss.org/browse/JBIDE-14726
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: aerogear-hybrid
> Affects Versions: 4.1.0.Beta1
> Environment: Darwin machydra.brq.redhat.com 12.3.0 Darwin Kernel Version 12.3.0: Sun Jan 6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64 x86_64
> Reporter: Stefan Bunciak
> Assignee: Gorkem Ercan
> Priority: Critical
> Fix For: 4.1.x, 4.2.x
>
> Attachments: screenshot.png
>
>
> {code}
> dyld: Library not loaded: @rpath/iPhoneSimulatorRemoteClient.framework/Versions/A/iPhoneSimulatorRemoteClient
> Referenced from: /Users/jbossqa/Downloads/eclipse/configuration/org.eclipse.osgi/bundles/264/data//ios-sim
> Reason: image not found
> {code}
> The files seems to be present:
> !screenshot.png|thumbnail!
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-14818) there's no "deployments" page for OpenShift that would allow me to rename a module
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14818?page=com.atlassian.jira.plugi... ]
Denis Golovin updated JBIDE-14818:
----------------------------------
Fix Version/s: 4.2.0.Alpha1
(was: 4.2.x)
> there's no "deployments" page for OpenShift that would allow me to rename a module
> ----------------------------------------------------------------------------------
>
> Key: JBIDE-14818
> URL: https://issues.jboss.org/browse/JBIDE-14818
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift, server
> Affects Versions: 4.1.0.Beta2
> Reporter: Andre Dietisheim
> Assignee: Rob Stryker
> Priority: Critical
> Fix For: 4.2.0.Alpha1
>
>
> In JDF-172 a users tries to deploy an application to OpenShift. He'll use the binary deployment. In order to have the app showing up at */* he'll want to rename the war to *ROOT.war*. If he does this in the *Project Explorer* things are fine as long as the original project is not changed. As soon as there's a change the adapter will "refresh" the war and re-create it with the project name, it will not update the ROOT.war. We therefore need a deployments page where the user can rename a deployment.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-13445) Enable possibility of deployment scanner additions for remote servers
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13445?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-13445:
-------------------------------------
DeploymentModuleOptionCompositeAssistant has an interface used only internally and by rse.ui called IDeploymentPageCallback. The interface is outdated, but basically was a hack interface that has some of the pieces that would be needed to enable deployment scanner additions for remote servers.
Specifically, there is no clean API to discover server home depending on what 'mode' the server is in (local / rse). For local, we currently just access the runtime directly. For remote, there are string-constant property keys, but as.core cannot access these string constants and so have no clean way to gain access to the values for remote server home / configuration name / etc.
The interface in as.ui right now, was previously used for as < 7, and when as7 was added, workarounds were added to the class.
Either way, this type of interface needs to be accessible in core, not ui, so the entire premise is broken. This api should be removed and a new cleaner one added. I believe this UI class is the only consumer of the similar api, but other code could clearly be cleaned up.
This would also help the (potential) addition of server modes to have a more clear workflow as well.
> Enable possibility of deployment scanner additions for remote servers
> ---------------------------------------------------------------------
>
> Key: JBIDE-13445
> URL: https://issues.jboss.org/browse/JBIDE-13445
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: server
> Reporter: Rob Stryker
> Assignee: Rob Stryker
> Fix For: 4.1.x
>
>
> Currently, additions tot he deployment scanners are limited to locally running servers. This is due to a lack of API allowing accurate discovery of what folders need to be added for remote servers, specifically no way for as.core classes to discover what the remote server home is, what the remote configuration folder is, etc. There is a lack of api here, and that will need to be fixed before this issue can work.
> Remember: If a remote server is not running with its management ports exposed, do not attempt to add the scanners, as the management connections will fail.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-14818) there's no "deployments" page for OpenShift that would allow me to rename a module
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-14818?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-14818:
-------------------------------------
patch has been tested and works properly, but of course users may need to do other things like disable maven build, configure marker files, etc.
> there's no "deployments" page for OpenShift that would allow me to rename a module
> ----------------------------------------------------------------------------------
>
> Key: JBIDE-14818
> URL: https://issues.jboss.org/browse/JBIDE-14818
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: openshift, server
> Affects Versions: 4.1.0.Beta2
> Reporter: Andre Dietisheim
> Assignee: Rob Stryker
> Priority: Critical
> Fix For: 4.2.x
>
>
> In JDF-172 a users tries to deploy an application to OpenShift. He'll use the binary deployment. In order to have the app showing up at */* he'll want to rename the war to *ROOT.war*. If he does this in the *Project Explorer* things are fine as long as the original project is not changed. As soon as there's a change the adapter will "refresh" the war and re-create it with the project name, it will not update the ROOT.war. We therefore need a deployments page where the user can rename a deployment.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-15280) Update parent/pom.xml version to 4.2.0.Alpha1
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15280?page=com.atlassian.jira.plugi... ]
Denis Golovin updated JBIDE-15280:
----------------------------------
Description:
||#||Module Name||PR Link||PR Status||
|1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
|2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
|3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
|4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
|5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
|6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|{color:green}Merged{color}|
|7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
|9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
|10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
|11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
|12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
|13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
|14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
|15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
|16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|{color:green}Merged{color}|
|17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
|18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
|19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|{color:green}Merged{color}|
|20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
|21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
was:
||#||Module Name||PR Link||PR Status||
|1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
|2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
|3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
|4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
|5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
|6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
|7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
|9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
|10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
|11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
|12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
|13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
|14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
|15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
|16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|{color:green}Merged{color}|
|17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
|18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
|19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|{color:green}Merged{color}|
|20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
|21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
> Update parent/pom.xml version to 4.2.0.Alpha1
> ---------------------------------------------
>
> Key: JBIDE-15280
> URL: https://issues.jboss.org/browse/JBIDE-15280
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: aerogear-hybrid, archives, birt, browsersim, CDI, central, common/jst/core, esb, forge, freemarker, GWT, hibernate, jmx, JSF, jsp/jsf/xml/html source editing, livereload, maven, openshift, project-examples, runtime-detection, Seam 2, server, usage, Visual Page Editor core, Webservices
> Affects Versions: 4.2.0.Alpha1
> Reporter: Denis Golovin
> Assignee: Denis Golovin
> Priority: Blocker
> Fix For: 4.2.0.Alpha1
>
>
> ||#||Module Name||PR Link||PR Status||
> |1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
> |2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
> |3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
> |4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
> |5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
> |6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|{color:green}Merged{color}|
> |7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
> |9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
> |10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
> |11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
> |12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
> |13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
> |14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
> |15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
> |16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|{color:green}Merged{color}|
> |17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
> |18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
> |19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|{color:green}Merged{color}|
> |20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
> |21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-15280) Update parent/pom.xml version to 4.2.0.Alpha1
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15280?page=com.atlassian.jira.plugi... ]
Denis Golovin updated JBIDE-15280:
----------------------------------
Description:
||#||Module Name||PR Link||PR Status||
|1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
|2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
|3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
|4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
|5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
|6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
|7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
|9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
|10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
|11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
|12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
|13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
|14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
|15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
|16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|{color:green}Merged{color}|
|17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
|18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
|19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|{color:green}Merged{color}|
|20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
|21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
was:
||#||Module Name||PR Link||PR Status||
|1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
|2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
|3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
|4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
|5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
|6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
|7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
|9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
|10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
|11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
|12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
|13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
|14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
|15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
|16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|Open|
|17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
|18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
|19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|{color:green}Merged{color}|
|20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
|21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
> Update parent/pom.xml version to 4.2.0.Alpha1
> ---------------------------------------------
>
> Key: JBIDE-15280
> URL: https://issues.jboss.org/browse/JBIDE-15280
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: aerogear-hybrid, archives, birt, browsersim, CDI, central, common/jst/core, esb, forge, freemarker, GWT, hibernate, jmx, JSF, jsp/jsf/xml/html source editing, livereload, maven, openshift, project-examples, runtime-detection, Seam 2, server, usage, Visual Page Editor core, Webservices
> Affects Versions: 4.2.0.Alpha1
> Reporter: Denis Golovin
> Assignee: Denis Golovin
> Priority: Blocker
> Fix For: 4.2.0.Alpha1
>
>
> ||#||Module Name||PR Link||PR Status||
> |1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
> |2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
> |3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
> |4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
> |5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
> |6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
> |7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
> |9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
> |10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
> |11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
> |12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
> |13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
> |14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
> |15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
> |16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|{color:green}Merged{color}|
> |17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
> |18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
> |19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|{color:green}Merged{color}|
> |20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
> |21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-15280) Update parent/pom.xml version to 4.2.0.Alpha1
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15280?page=com.atlassian.jira.plugi... ]
Denis Golovin updated JBIDE-15280:
----------------------------------
Description:
||#||Module Name||PR Link||PR Status||
|1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
|2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
|3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
|4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
|5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
|6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
|7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
|9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
|10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
|11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
|12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
|13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
|14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
|15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
|16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|Open|
|17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
|18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
|19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|{color:green}Merged{color}|
|20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
|21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
was:
||#||Module Name||PR Link||PR Status||
|1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
|2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
|3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
|4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
|5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
|6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
|7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
|9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
|10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
|11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
|12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
|13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
|14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
|15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
|16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|Open|
|17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
|18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
|19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|Open|
|20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
|21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
> Update parent/pom.xml version to 4.2.0.Alpha1
> ---------------------------------------------
>
> Key: JBIDE-15280
> URL: https://issues.jboss.org/browse/JBIDE-15280
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: aerogear-hybrid, archives, birt, browsersim, CDI, central, common/jst/core, esb, forge, freemarker, GWT, hibernate, jmx, JSF, jsp/jsf/xml/html source editing, livereload, maven, openshift, project-examples, runtime-detection, Seam 2, server, usage, Visual Page Editor core, Webservices
> Affects Versions: 4.2.0.Alpha1
> Reporter: Denis Golovin
> Assignee: Denis Golovin
> Priority: Blocker
> Fix For: 4.2.0.Alpha1
>
>
> ||#||Module Name||PR Link||PR Status||
> |1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
> |2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
> |3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
> |4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
> |5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
> |6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
> |7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
> |9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
> |10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
> |11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
> |12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
> |13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
> |14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
> |15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
> |16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|Open|
> |17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
> |18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
> |19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|{color:green}Merged{color}|
> |20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
> |21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-15280) Update parent/pom.xml version to 4.2.0.Alpha1
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15280?page=com.atlassian.jira.plugi... ]
Denis Golovin updated JBIDE-15280:
----------------------------------
Description:
||#||Module Name||PR Link||PR Status||
|1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
|2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
|3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
|4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
|5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
|6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
|7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
|9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
|10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
|11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
|12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
|13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
|14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
|15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
|16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|Open|
|17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
|18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
|19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|Open|
|20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
|21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
was:
||#||Module Name||PR Link||PR Status||
|1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
|2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
|3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
|4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
|5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
|6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
|7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
|9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
|10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
|11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
|12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
|13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
|14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
|15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|Open|
|16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|Open|
|17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
|18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
|19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|Open|
|20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
|21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
> Update parent/pom.xml version to 4.2.0.Alpha1
> ---------------------------------------------
>
> Key: JBIDE-15280
> URL: https://issues.jboss.org/browse/JBIDE-15280
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: aerogear-hybrid, archives, birt, browsersim, CDI, central, common/jst/core, esb, forge, freemarker, GWT, hibernate, jmx, JSF, jsp/jsf/xml/html source editing, livereload, maven, openshift, project-examples, runtime-detection, Seam 2, server, usage, Visual Page Editor core, Webservices
> Affects Versions: 4.2.0.Alpha1
> Reporter: Denis Golovin
> Assignee: Denis Golovin
> Priority: Blocker
> Fix For: 4.2.0.Alpha1
>
>
> ||#||Module Name||PR Link||PR Status||
> |1|jbosstools-base|[#172|https://github.com/jbosstools/jbosstools-base/pull/172]|{color:green}Merged{color}|
> |2|jbosstools-jst|[#188|https://github.com/jbosstools/jbosstools-jst/pull/188]|{color:green}Merged{color}|
> |3|jbosstools-xulrunner|[#9|https://github.com/jbosstools/jbosstools-xulrunner/pull/9]|{color:green}Merged{color}|
> |4|jbosstools-vpe|[#148|https://github.com/jbosstools/jbosstools-vpe/pull/148]|{color:green}Merged{color}|
> |5|jbosstools-hibernate|[#21|https://github.com/jbosstools/jbosstools-hibernate/pull/21]|{color:green}Merged{color}|
> |6|jbosstools-server|[#126|https://github.com/jbosstools/jbosstools-server/pull/126]|Open|
> |7|jbosstools-javaee|[#114|https://github.com/jbosstools/jbosstools-javaee/pull/114]|{color:green}Merged{color}|
> |9|jbosstools-portlet|[#11|https://github.com/jbosstools/jbosstools-portlet/pull/11]|{color:green}Merged{color}|
> |10|jbosstools-birt|[#11|https://github.com/jbosstools/jbosstools-birt/pull/11]|{color:green}Merged{color}|
> |11|jbosstools-arquillian|[#13|https://github.com/jbosstools/jbosstools-arquillian/pull/13]|{color:green}Merged{color}|
> |12|jbosstools-discovery|[#28|https://github.com/jbosstools/jbosstools-discovery/pull/28]|{color:green}Merged{color}|
> |13|jbosstools-openshift|[#201|https://github.com/jbosstools/jbosstools-openshift/pull/201]|{color:green}Merged{color}|
> |14|jbosstools-forge|[7d5bce1|https://github.com/forge/jbosstools-forge/commit/7d5bce193c1d419b569057ad0d0d6914e85d034c]|{color:green}Merged{color}|
> |15|jbosstools-aerogear|[#6|https://github.com/jbosstools/jbosstools-aerogear/pull/6]|{color:green}Merged{color}|
> |16|jbosstools-central|[#147|https://github.com/jbosstools/jbosstools-central/pull/147]|Open|
> |17|jbosstools-livereload|[#52|https://github.com/jbosstools/jbosstools-livereload/pull/52]|{color:green}Merged{color}|
> |18|jbosstools-webservices|[#74|https://github.com/jbosstools/jbosstools-webservices/pull/74]|{color:green}Merged{color}|
> |19|jbosstools-esb|[#37|https://github.com/jbosstools/jbosstools-esb/pull/37]|Open|
> |20|jbosstools-freemarker|[#12|https://github.com/jbosstools/jbosstools-freemarker/pull/12]|{color:green}Merged{color}|
> |21|jbosstools-gwt|[#7|https://github.com/jbosstools/jbosstools-gwt/pull/7]|{color:green}Merged{color}|
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-15325) NullPointerException in ExternalizeStringsUtils in jsf facelets editor
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15325?page=com.atlassian.jira.plugi... ]
Alexey Kazakov reassigned JBIDE-15325:
--------------------------------------
Assignee: Daniel Azarov
> NullPointerException in ExternalizeStringsUtils in jsf facelets editor
> ----------------------------------------------------------------------
>
> Key: JBIDE-15325
> URL: https://issues.jboss.org/browse/JBIDE-15325
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: JSF, Visual Page Editor core
> Affects Versions: 4.1.0.Final
> Environment: Windows 7 x64, Eclipse Kepler EE x64, JDK 1.7
> eclipse.buildId=4.3.0.I20130605-2000
> java.version=1.7.0_25
> java.vendor=Oracle Corporation
> BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=de_DE
> Framework arguments: -product org.eclipse.epp.package.jee.product
> Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.jee.product
> Reporter: Roman Ilin
> Assignee: Daniel Azarov
> Priority: Critical
>
> Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.renderers.swt".
> org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException
> at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:243)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:224)
> at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
> at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.setEnabled(HandlerServiceHandler.java:82)
> at org.eclipse.core.commands.Command.setEnabled(Command.java:886)
> at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.canExecute(HandlerServiceImpl.java:173)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.canExecuteItem(HandledContributionItem.java:864)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.access$2(HandledContributionItem.java:853)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$3.run(HandledContributionItem.java:231)
> at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.updateItemEnablement(HandledContributionItem.java:261)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$ToolItemUpdateTimer.run(HandledContributionItem.java:152)
> at org.eclipse.swt.widgets.Display.runTimer(Display.java:4271)
> at org.eclipse.swt.widgets.Display.messageProc(Display.java:3358)
> at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
> at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2549)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3757)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1113)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:997)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:138)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:610)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:567)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
> at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
> Caused by: java.lang.NullPointerException
> at org.jboss.tools.jst.jsp.i18n.ExternalizeStringsUtils.isExternalizeStringsCommandEnabled(ExternalizeStringsUtils.java:159)
> at org.jboss.tools.jst.jsp.i18n.handlers.I18nHandler.setEnabled(I18nHandler.java:52)
> at org.eclipse.ui.internal.handlers.HandlerProxy.setEnabled(HandlerProxy.java:232)
> at org.eclipse.ui.internal.handlers.E4HandlerProxy.setEnabled(E4HandlerProxy.java:130)
> at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
> ... 38 more
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months
[JBoss JIRA] (JBIDE-15325) NullPointerException in ExternalizeStringsUtils in jsf facelets editor
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-15325?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-15325:
-----------------------------------
Fix Version/s: 4.2.0.Alpha1
> NullPointerException in ExternalizeStringsUtils in jsf facelets editor
> ----------------------------------------------------------------------
>
> Key: JBIDE-15325
> URL: https://issues.jboss.org/browse/JBIDE-15325
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: JSF, Visual Page Editor core
> Affects Versions: 4.1.0.Final
> Environment: Windows 7 x64, Eclipse Kepler EE x64, JDK 1.7
> eclipse.buildId=4.3.0.I20130605-2000
> java.version=1.7.0_25
> java.vendor=Oracle Corporation
> BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=de_DE
> Framework arguments: -product org.eclipse.epp.package.jee.product
> Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.jee.product
> Reporter: Roman Ilin
> Assignee: Daniel Azarov
> Priority: Critical
> Fix For: 4.2.0.Alpha1
>
>
> Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.renderers.swt".
> org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException
> at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:243)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:224)
> at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:132)
> at org.eclipse.e4.core.commands.internal.HandlerServiceHandler.setEnabled(HandlerServiceHandler.java:82)
> at org.eclipse.core.commands.Command.setEnabled(Command.java:886)
> at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.canExecute(HandlerServiceImpl.java:173)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.canExecuteItem(HandledContributionItem.java:864)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.access$2(HandledContributionItem.java:853)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$3.run(HandledContributionItem.java:231)
> at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.updateItemEnablement(HandledContributionItem.java:261)
> at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$ToolItemUpdateTimer.run(HandledContributionItem.java:152)
> at org.eclipse.swt.widgets.Display.runTimer(Display.java:4271)
> at org.eclipse.swt.widgets.Display.messageProc(Display.java:3358)
> at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
> at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2549)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3757)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1113)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:997)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:138)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:610)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:567)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124)
> at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
> Caused by: java.lang.NullPointerException
> at org.jboss.tools.jst.jsp.i18n.ExternalizeStringsUtils.isExternalizeStringsCommandEnabled(ExternalizeStringsUtils.java:159)
> at org.jboss.tools.jst.jsp.i18n.handlers.I18nHandler.setEnabled(I18nHandler.java:52)
> at org.eclipse.ui.internal.handlers.HandlerProxy.setEnabled(HandlerProxy.java:232)
> at org.eclipse.ui.internal.handlers.E4HandlerProxy.setEnabled(E4HandlerProxy.java:130)
> at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:606)
> at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
> ... 38 more
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 8 months