[JBoss JIRA] (JBIDE-13824) update install-grinder jobs to use short workspace & INSTALL_PLAN instead of groovy environment variable hack
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13824?page=com.atlassian.jira.plugi... ]
Nick Boldt updated JBIDE-13824:
-------------------------------
Summary: update install-grinder jobs to use short workspace & INSTALL_PLAN instead of groovy environment variable hack (was: groovy environment variable hack no longer works in install-grinder jobs)
> update install-grinder jobs to use short workspace & INSTALL_PLAN instead of groovy environment variable hack
> -------------------------------------------------------------------------------------------------------------
>
> Key: JBIDE-13824
> URL: https://issues.jboss.org/browse/JBIDE-13824
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: Build/Releng, testing-tools
> Affects Versions: 4.0.1.Final, 4.1.0.Alpha1
> Reporter: Nick Boldt
> Assignee: Nick Boldt
>
> {code:title=https://jenkins.mw.lab.eng.bos.redhat.com/hudson/view/DevStudio/view/DevStudio_6.0.juno/job/jbosstools-4.0_stable_branch.upgrade-tests.matrix/7/console}
> Started by user nboldt(a)REDHAT.COM
> [EnvInject] - Loading node environment variables.
> [EnvInject] - Preparing an environment for the build.
> [EnvInject] - Keeping Jenkins system variables.
> [EnvInject] - Keeping Jenkins build variables.
> [EnvInject] - Adding build parameters as variables.
> [EnvInject] - Evaluation the following Groovy script content:
> // Horrible hack to set PRODUCT !
> import hudson.model.*
> def thr = Thread.currentThread()
> def build = thr?.executable
> def resolver = build.buildVariableResolver
> def url = resolver.resolve("INSTALL_URL")
> String product = url.contains("devstudio") ? "devstudio" : "jbosstools"
> String proto = url.contains("devstudio.jboss.com") ? "https" : "http"
> [PRODUCT: product, PROTO: proto]
> [EnvInject] - [ERROR] - SEVERE ERROR occurs: No such property: executable for class: hudson.model.OneOffExecutor
> Notifying upstream projects of job completion
> Finished: FAILURE
> {code}
> Similar problem (which I worked around by removing the check on url and just hardcoding the values of product and proto):
> {code:title=https://jenkins.mw.lab.eng.bos.redhat.com/hudson/view/DevStudio/view/DevStudio_6.0.juno/job/jbosstools-4.0_stable_branch.install-tests.matrix/77/console}
> Started by user nboldt(a)REDHAT.COM
> [EnvInject] - Loading node environment variables.
> [EnvInject] - Preparing an environment for the build.
> [EnvInject] - Keeping Jenkins system variables.
> [EnvInject] - Keeping Jenkins build variables.
> [EnvInject] - Adding build parameters as variables.
> [EnvInject] - Evaluation the following Groovy script content:
> // Horrible hack to set PRODUCT !
> import hudson.model.*
> def thr = Thread.currentThread()
> def build = thr?.getCurrentExecutable()
> def resolver = build.buildVariableResolver
> def url = resolver.resolve("INSTALL_URL")
> String product = url.contains("devstudio") ? "devstudio" : "jbosstools"
> String proto = url.contains("devstudio.jboss.com") ? "https" : "http"
> [PRODUCT: product, PROTO: proto]
> [EnvInject] - [ERROR] - SEVERE ERROR occurs: Cannot invoke method contains() on null object
> Notifying upstream projects of job completion
> Finished: FAILURE{code}
--
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
13 years
[JBoss JIRA] (JBIDE-13824) groovy environment variable hack no longer works in install-grinder jobs
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13824?page=com.atlassian.jira.plugi... ]
Nick Boldt reassigned JBIDE-13824:
----------------------------------
Assignee: Nick Boldt (was: Mickael Istria)
> groovy environment variable hack no longer works in install-grinder jobs
> ------------------------------------------------------------------------
>
> Key: JBIDE-13824
> URL: https://issues.jboss.org/browse/JBIDE-13824
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: Build/Releng, testing-tools
> Affects Versions: 4.0.1.Final, 4.1.0.Alpha1
> Reporter: Nick Boldt
> Assignee: Nick Boldt
>
> {code:title=https://jenkins.mw.lab.eng.bos.redhat.com/hudson/view/DevStudio/view/DevStudio_6.0.juno/job/jbosstools-4.0_stable_branch.upgrade-tests.matrix/7/console}
> Started by user nboldt(a)REDHAT.COM
> [EnvInject] - Loading node environment variables.
> [EnvInject] - Preparing an environment for the build.
> [EnvInject] - Keeping Jenkins system variables.
> [EnvInject] - Keeping Jenkins build variables.
> [EnvInject] - Adding build parameters as variables.
> [EnvInject] - Evaluation the following Groovy script content:
> // Horrible hack to set PRODUCT !
> import hudson.model.*
> def thr = Thread.currentThread()
> def build = thr?.executable
> def resolver = build.buildVariableResolver
> def url = resolver.resolve("INSTALL_URL")
> String product = url.contains("devstudio") ? "devstudio" : "jbosstools"
> String proto = url.contains("devstudio.jboss.com") ? "https" : "http"
> [PRODUCT: product, PROTO: proto]
> [EnvInject] - [ERROR] - SEVERE ERROR occurs: No such property: executable for class: hudson.model.OneOffExecutor
> Notifying upstream projects of job completion
> Finished: FAILURE
> {code}
> Similar problem (which I worked around by removing the check on url and just hardcoding the values of product and proto):
> {code:title=https://jenkins.mw.lab.eng.bos.redhat.com/hudson/view/DevStudio/view/DevStudio_6.0.juno/job/jbosstools-4.0_stable_branch.install-tests.matrix/77/console}
> Started by user nboldt(a)REDHAT.COM
> [EnvInject] - Loading node environment variables.
> [EnvInject] - Preparing an environment for the build.
> [EnvInject] - Keeping Jenkins system variables.
> [EnvInject] - Keeping Jenkins build variables.
> [EnvInject] - Adding build parameters as variables.
> [EnvInject] - Evaluation the following Groovy script content:
> // Horrible hack to set PRODUCT !
> import hudson.model.*
> def thr = Thread.currentThread()
> def build = thr?.getCurrentExecutable()
> def resolver = build.buildVariableResolver
> def url = resolver.resolve("INSTALL_URL")
> String product = url.contains("devstudio") ? "devstudio" : "jbosstools"
> String proto = url.contains("devstudio.jboss.com") ? "https" : "http"
> [PRODUCT: product, PROTO: proto]
> [EnvInject] - [ERROR] - SEVERE ERROR occurs: Cannot invoke method contains() on null object
> Notifying upstream projects of job completion
> Finished: FAILURE{code}
--
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
13 years
[JBoss JIRA] (JBIDE-13785) Improve the current WS Tester
by Brian Fitzpatrick (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13785?page=com.atlassian.jira.plugi... ]
Brian Fitzpatrick commented on JBIDE-13785:
-------------------------------------------
Ok. One of the questions that came up last week when chatting with Max was around whether the Simple Web Service wizard (New->Other, Web Services->Simple Web Service) would successfully create a new HelloWorld web service sample project or not on EAP 6.x. I just tested against EAP 6.1 Alpha and it worked fine. Also works against AS 7.1.1 just fine.
Now the WTP-based wizards may be a whole different pile of no-fun... But the wizard you asked about Max seems to work fine on the platforms you asked about. :)
> Improve the current WS Tester
> -----------------------------
>
> Key: JBIDE-13785
> URL: https://issues.jboss.org/browse/JBIDE-13785
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: Webservices
> Affects Versions: 4.1.0.Final
> Reporter: Xavier Coulon
> Assignee: Brian Fitzpatrick
> Fix For: 4.1.x
>
> Attachments: binary-button-icon.png, hierarchical-layout-button-icon.png, jax-ws-tester-mockup.bmml, jax-ws-tester-mockup.bmml, jax-ws-tester-mockup.png, properties-button-icon.png, run-button-icon.png, save-button-icon.png, web-button-icon.png, wsdl-button-icon.png
>
>
> Improving the current WebService Tester view, mayb splitting the current tester that supports both SOAP and REST styles into 2 separate viewers (with maybe a common code base).
> Some ideas:
> - removing some unnecessary options in the SOAP Tester (ex: HTTP Methods),
> - adding embedded XML and JSON Editors to edit the request / response entities,
> - generate request entity skeletons from the expected java class
--
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
13 years
[JBoss JIRA] (JBIDE-13283) Use Akamai for Target-Platform, Mirror, releases stuff
by Mickael Istria (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13283?page=com.atlassian.jira.plugi... ]
Mickael Istria edited comment on JBIDE-13283 at 3/21/13 10:00 AM:
------------------------------------------------------------------
We should maybe simply start by asking eng-ops to perform the following operations:
{code:none}
cd /downloads_htdocs/tools
cp -r updates/requirements/*/ static/requirements
cp -r targetplatfroms/jbosstoolstarget/4.30.5.Alpha static/targetplatfroms/jbosstoolstargets
cp -r updates/JBoss* static/releases
{code}
So we have the copies already there and we can start giving try to using redirections to them with reduced risks.
was (Author: mickael_istria):
We should maybe simply start by asking eng-ops to perform the following operations:
{code}
cd /downloads_htdocs/tools
cp -r updates/requirements/*/ static/requirements
cp -r targetplatfroms/jbosstoolstarget/4.30.5.Alpha static/targetplatfroms/jbosstoolstargets
cp -r updates/JBoss* static/releases
{code}
So we have the copies already there and we can start giving try to using redirections to them with reduced risks.
> Use Akamai for Target-Platform, Mirror, releases stuff
> ------------------------------------------------------
>
> Key: JBIDE-13283
> URL: https://issues.jboss.org/browse/JBIDE-13283
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: Build/Releng
> Reporter: Mickael Istria
> Assignee: Mickael Istria
> Fix For: 4.1.0.Alpha2
>
>
> All our repositories that are either mirrors or target-platform are not updated often. Then we could use Akamai to improve performances. At least these folders would be good:
> * http://download.jboss.org/jbosstools/updates/requirements/
> * http://download.jboss.org/jbosstools/updates/stable/
--
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
13 years
[JBoss JIRA] (JBIDE-13833) BrowserSim: zoom webpage for truncated devices
by Konstantin Marmalyukov (JIRA)
Konstantin Marmalyukov created JBIDE-13833:
----------------------------------------------
Summary: BrowserSim: zoom webpage for truncated devices
Key: JBIDE-13833
URL: https://issues.jboss.org/browse/JBIDE-13833
Project: Tools (JBoss Tools)
Issue Type: Bug
Affects Versions: 4.1.0.Alpha2
Reporter: Konstantin Marmalyukov
Assignee: Konstantin Marmalyukov
Fix For: 4.1.0.Alpha2
When using ipad and others we currently resize the canvas, would be good if we could show the true rendering
--
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
13 years
[JBoss JIRA] (JBIDE-13412) NPE when clicking on QuickFix in New Project Example Wizard
by Radim Hopp (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13412?page=com.atlassian.jira.plugi... ]
Radim Hopp commented on JBIDE-13412:
------------------------------------
Couldn't reproduce it either. Closing.
> NPE when clicking on QuickFix in New Project Example Wizard
> -----------------------------------------------------------
>
> Key: JBIDE-13412
> URL: https://issues.jboss.org/browse/JBIDE-13412
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: project-examples
> Affects Versions: 4.1.0.Alpha1
> Reporter: Alexey Kazakov
> Assignee: Snjezana Peco
> Fix For: 4.1.0.Alpha1
>
>
> {code}
> java.lang.NullPointerException
> at org.jboss.tools.project.examples.wizard.NewProjectExamplesRequirementsPage$3.selectionChanged(NewProjectExamplesRequirementsPage.java:358)
> at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:164)
> at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
> at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49)
> at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175)
> at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:162)
> at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:2188)
> at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:1211)
> at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:1241)
> at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:239)
> at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:233)
> at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:403)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3554)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3179)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
> at org.eclipse.jface.window.Window.open(Window.java:801)
> at org.jboss.tools.central.actions.NewProjectExamplesWizardHandler.execute(NewProjectExamplesWizardHandler.java:62)
> at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:290)
> at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:76)
> at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:229)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:210)
> at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131)
> at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:171)
> at org.eclipse.ui.internal.handlers.LegacyHandlerService.executeCommand(LegacyHandlerService.java:500)
> at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:824)
> at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:810)
> at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:800)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3554)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3179)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1029)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:923)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
> 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:353)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
> 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:601)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
> {code}
--
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
13 years
[JBoss JIRA] (JBIDE-13412) NPE when clicking on QuickFix in New Project Example Wizard
by Radim Hopp (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13412?page=com.atlassian.jira.plugi... ]
Radim Hopp closed JBIDE-13412.
------------------------------
> NPE when clicking on QuickFix in New Project Example Wizard
> -----------------------------------------------------------
>
> Key: JBIDE-13412
> URL: https://issues.jboss.org/browse/JBIDE-13412
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: project-examples
> Affects Versions: 4.1.0.Alpha1
> Reporter: Alexey Kazakov
> Assignee: Snjezana Peco
> Fix For: 4.1.0.Alpha1
>
>
> {code}
> java.lang.NullPointerException
> at org.jboss.tools.project.examples.wizard.NewProjectExamplesRequirementsPage$3.selectionChanged(NewProjectExamplesRequirementsPage.java:358)
> at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:164)
> at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
> at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49)
> at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175)
> at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:162)
> at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:2188)
> at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:1211)
> at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:1241)
> at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:239)
> at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:233)
> at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:403)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3554)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3179)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
> at org.eclipse.jface.window.Window.open(Window.java:801)
> at org.jboss.tools.central.actions.NewProjectExamplesWizardHandler.execute(NewProjectExamplesWizardHandler.java:62)
> at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:290)
> at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:76)
> at sun.reflect.GeneratedMethodAccessor80.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:229)
> at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:210)
> at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131)
> at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:171)
> at org.eclipse.ui.internal.handlers.LegacyHandlerService.executeCommand(LegacyHandlerService.java:500)
> at org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(CommandContributionItem.java:824)
> at org.eclipse.ui.menus.CommandContributionItem.access$19(CommandContributionItem.java:810)
> at org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(CommandContributionItem.java:800)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3554)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3179)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1029)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:923)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
> 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:353)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
> 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:601)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
> {code}
--
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
13 years