[JBoss JIRA] (JBIDE-17798) compile failure in jbosstools-server
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17798?page=com.atlassian.jira.plugi... ]
Rob Stryker resolved JBIDE-17798.
---------------------------------
Fix Version/s: 4.2.0.Beta3
Resolution: Done
Fixed in b3 and master
> compile failure in jbosstools-server
> ------------------------------------
>
> Key: JBIDE-17798
> URL: https://issues.jboss.org/browse/JBIDE-17798
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.2.0.Beta3
> Reporter: Daniel Azarov
> Assignee: Rob Stryker
> Priority: Blocker
> Fix For: 4.2.0.Beta3
>
>
> org.jboss.tools.jmx.jvmmonitor.internal.core.cpu.CpuProfiler
> {code}
> /*
> * @see ICpuProfiler#getSamplingPeriod()
> */
> @Override
> public Integer getSamplingPeriod() {
> IMBeanServer s = jvm.getMBeanServer();
> <<<<<<< HEAD
> if( s != null && s instanceof IProfilingMBeanServer)
> return ((IProfilingMBeanServer)s).getSamplingPeriod();
> =======
> if( s != null && s instanceof IProfilingMBeanServer) {
> return ((IProfilingMBeanServer)s).getSamplingPeriod();
> }
> >>>>>>> JBIDE-17311 - moving the jvmmonitor agent code into our plugins folder.
> return -1;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (JBDS-3081) For JBDS 8.0.0.Beta3: Code Freeze + Branch
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-3081?page=com.atlassian.jira.plugin.... ]
Denis Golovin closed JBDS-3081.
-------------------------------
Resolution: Done
> For JBDS 8.0.0.Beta3: Code Freeze + Branch
> ------------------------------------------
>
> Key: JBDS-3081
> URL: https://issues.jboss.org/browse/JBDS-3081
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: installer
> Reporter: Nick Boldt
> Priority: Blocker
> Labels: task
> Fix For: 8.0.0.Beta3
>
>
> For JBDS 8.0.0.Beta3: Please perform the following tasks:
> 0. If nothing has changed in your component since 4.1.1.Final / 7.1.0.GA (eg., XulRunner, GWT, Freemarker, BIRT), *{color:red}Reject this JIRA{color}*.
> Otherwise:
> 0. Make sure your component has no remaining unresolved JIRAs set for fixVersion = 4.2.0.Beta3
> [Unresolved JIRAs with fixVersion = 4.2.0.Beta3, 8.0.0.Beta3|https://issues.jboss.org/issues/?jql=%28%28project%20%3D%20%2...]
> 1. Ensure your component features/plugins have been [properly upversioned|http://wiki.eclipse.org/Version_Numbering#Overall_example], eg., from 1.0.0 to 1.0.1.
> *NOTE:* If you already did this for the previous milestone you do *not* need to do so again.
> {code}
> mvn -Dtycho.mode=maven org.sonatype.tycho:tycho-versions-plugin:0.17.0:set-version -DnewVersion=1.0.1-SNAPSHOT
> {code}
> 2. Update your root pom to use parent pom version 4.2.0.Beta3-SNAPSHOT;
> {code}
> <parent>
> <groupId>org.jboss.tools</groupId>
> <artifactId>parent</artifactId>
> <version>4.2.0.Beta3-SNAPSHOT</version>
> </parent>
> {code}
> 3. Ensure you've built & run your plugin tests using the latest target platform version 4.40.0.Beta3-SNAPSHOT;
> {code}
> mvn clean verify -Dtpc.version=4.40.0.Beta3 # (if the TP is already released)
> or
> mvn clean verify -Dtpc.version=4.40.0.Beta3-SNAPSHOT # (if still being staged)
> {code}
> 4. Branch from your existing master branch into a new *{color:blue}jbosstools-4.2.0.Beta3x{color}* branch;
> {code}
> git checkout master
> git pull origin master
> git checkout -b jbosstools-4.2.0.Beta3x
> git push origin jbosstools-4.2.0.Beta3x
> {code}
> 5. *NOW THAT YOU HAVE BRANCHED*, check out your *{color:orange}master branch{color}*.
> {code}
> git checkout master
> git pull origin master
> {code}
> 6. Update your *{color:orange}master branch{color}* parent pom to use the latest version, *{color:orange}4.2.0.Beta3-SNAPSHOT{color}*:
> {code}
> <parent>
> <groupId>org.jboss.tools</groupId>
> <artifactId>parent</artifactId>
> <version>4.2.0.Beta3-SNAPSHOT</version>
> </parent>
> {code}
> Now, your root pom will use parent pom version:
> * *{color:blue}4.2.0.Beta3-SNAPSHOT{color}* in your *{color:blue}jbosstools-4.2.0.Beta3x{color}* branch, and
> * *{color:orange}4.2.0.Beta3-SNAPSHOT{color}* in your *{color:orange}master{color}* branch.
> 7. Close (do not resolve) this JIRA when done.
> 8. If you have any outstanding [New + Noteworthy JIRAs|https://issues.jboss.org/issues/?jql=%28%28project%20in%20%28JBDS%2...] to do, please complete them next.
> [Search for all task JIRA|https://issues.jboss.org/issues/?jql=%28%28project+in+%28JBDS%29+and...]
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (JBIDE-17798) compile failure in jbosstools-server
by Daniel Azarov (JIRA)
Daniel Azarov created JBIDE-17798:
-------------------------------------
Summary: compile failure in jbosstools-server
Key: JBIDE-17798
URL: https://issues.jboss.org/browse/JBIDE-17798
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: server
Affects Versions: 4.2.0.Beta3
Reporter: Daniel Azarov
Priority: Blocker
org.jboss.tools.jmx.jvmmonitor.internal.core.cpu.CpuProfiler
{code}
/*
* @see ICpuProfiler#getSamplingPeriod()
*/
@Override
public Integer getSamplingPeriod() {
IMBeanServer s = jvm.getMBeanServer();
<<<<<<< HEAD
if( s != null && s instanceof IProfilingMBeanServer)
return ((IProfilingMBeanServer)s).getSamplingPeriod();
=======
if( s != null && s instanceof IProfilingMBeanServer) {
return ((IProfilingMBeanServer)s).getSamplingPeriod();
}
>>>>>>> JBIDE-17311 - moving the jvmmonitor agent code into our plugins folder.
return -1;
}
{code}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (JBIDE-17798) compile failure in jbosstools-server
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17798?page=com.atlassian.jira.plugi... ]
Daniel Azarov reassigned JBIDE-17798:
-------------------------------------
Assignee: Rob Stryker
> compile failure in jbosstools-server
> ------------------------------------
>
> Key: JBIDE-17798
> URL: https://issues.jboss.org/browse/JBIDE-17798
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.2.0.Beta3
> Reporter: Daniel Azarov
> Assignee: Rob Stryker
> Priority: Blocker
>
> org.jboss.tools.jmx.jvmmonitor.internal.core.cpu.CpuProfiler
> {code}
> /*
> * @see ICpuProfiler#getSamplingPeriod()
> */
> @Override
> public Integer getSamplingPeriod() {
> IMBeanServer s = jvm.getMBeanServer();
> <<<<<<< HEAD
> if( s != null && s instanceof IProfilingMBeanServer)
> return ((IProfilingMBeanServer)s).getSamplingPeriod();
> =======
> if( s != null && s instanceof IProfilingMBeanServer) {
> return ((IProfilingMBeanServer)s).getSamplingPeriod();
> }
> >>>>>>> JBIDE-17311 - moving the jvmmonitor agent code into our plugins folder.
> return -1;
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (JBDS-3072) Cannot update from JBDS 8.0.0.Beta1 to Beta2
by Mickael Istria (JIRA)
[ https://issues.jboss.org/browse/JBDS-3072?page=com.atlassian.jira.plugin.... ]
Mickael Istria commented on JBDS-3072:
--------------------------------------
And more, do we want to support for JBDS 7.1.1 => JBDS 8.0.0.Beta3 update, and does it work?
> Cannot update from JBDS 8.0.0.Beta1 to Beta2
> --------------------------------------------
>
> Key: JBDS-3072
> URL: https://issues.jboss.org/browse/JBDS-3072
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: build
> Affects Versions: 8.0.0.Beta2
> Reporter: Pavol Srna
> Assignee: Nick Boldt
> Priority: Blocker
> Fix For: 8.0.0.Beta3
>
> Attachments: beta2c-site-added.png, update-beta1-to-beta2c.png
>
>
> {code}
> Your original request has been modified.
> "JBoss Maven Project Examples" is already installed, so an update will be performed instead.
> "Project Examples" is already installed, so an update will be performed instead.
> "JBoss Maven Integration" is already installed, so an update will be performed instead.
> "JBoss Maven Seam Integration" is already installed, so an update will be performed instead.
> "JBoss Maven Endorsed Libraries Configurator" is already installed, so an update will be performed instead.
> "JMX Console" is already installed, so an update will be performed instead.
> "JBoss Runtime Detection Core" is already installed, so an update will be performed instead.
> "JBoss Tools Apache Tomcat Integration" is already installed, so an update will be performed instead.
> "JBoss Tools Mobile Browser Simulator" is already installed, so an update will be performed instead.
> "JBossAS Tools" is already installed, so an update will be performed instead.
> "Seam Tools" is already installed, so an update will be performed instead.
> "JBoss Tools Foundation Security for Linux" is already installed, so an update will be performed instead.
> "JBoss Tools JSF" is already installed, so an update will be performed instead.
> "JBoss Maven Portlet Configurator" is already installed, so an update will be performed instead.
> "JBoss Stacks Tools" is already installed, so an update will be performed instead.
> "JBoss Tools Foundation" is already installed, so an update will be performed instead.
> "JBoss Tools RichFaces" is already installed, so an update will be performed instead.
> "JBoss Portlet" is already installed, so an update will be performed instead.
> "JBoss Maven Hibernate Configurator" is already installed, so an update will be performed instead.
> "Apache Deltaspike Tools" is already installed, so an update will be performed instead.
> "Maven Integration for Eclipse JDT APT" is already installed, so an update will be performed instead.
> "JBoss Developer Studio (Core Features)" is already installed, so an update will be performed instead.
> "JBoss Maven CDI Configurator" is already installed, so an update will be performed instead.
> "JBoss Archives Tools" is already installed, so an update will be performed instead.
> "Forge Tools" is already installed, so an update will be performed instead.
> "JBoss Tools Maven Source Lookup" is already installed, so an update will be performed instead.
> "JBoss Tools JDT Extensions" is already installed, so an update will be performed instead.
> "Context and Dependency Injection Tools" is already installed, so an update will be performed instead.
> "JBoss Tools LiveReload" is already installed, so an update will be performed instead.
> "JBoss WebServices Tools" is already installed, so an update will be performed instead.
> "JBoss Tools EGit Integration (Experimental)" is already installed, so an update will be performed instead.
> "JBoss OpenShift Tools" is already installed, so an update will be performed instead.
> "JBoss Runtime Seam Detector" is already installed, so an update will be performed instead.
> "Seam 3 Tools" is already installed, so an update will be performed instead.
> "JBoss JAX-RS Tools" is already installed, so an update will be performed instead.
> "JBoss Tools Java Standard Tools" is already installed, so an update will be performed instead.
> "Hibernate Tools" is already installed, so an update will be performed instead.
> "JBoss Tools Visual Page Editor" is already installed, so an update will be performed instead.
> Cannot complete the install because of a conflicting dependency.
> Software being installed: JBoss Developer Studio (Core Features) 8.0.0.Beta2-v20140613-0252-B130 (com.jboss.devstudio.core.feature.feature.group 8.0.0.Beta2-v20140613-0252-B130)
> Software currently installed: JBoss Developer Studio (Branded Product) 8.0.0.Beta1-v20140408-2350-B93 (com.jboss.devstudio.core.package 8.0.0.Beta1-v20140408-2350-B93)
> Only one of the following can be installed at once:
> JBoss Developer Studio Project Examples 8.0.0.Beta1-v20140408-2350-B93 (com.jboss.devstudio.core.project.examples 8.0.0.Beta1-v20140408-2350-B93)
> JBoss Developer Studio Project Examples 8.0.0.Beta2-v20140613-0252-B130 (com.jboss.devstudio.core.project.examples 8.0.0.Beta2-v20140613-0252-B130)
> Cannot satisfy dependency:
> From: JBoss Developer Studio (Core Features) 8.0.0.Beta1-v20140408-2350-B93 (com.jboss.devstudio.core.feature.feature.group 8.0.0.Beta1-v20140408-2350-B93)
> To: com.jboss.devstudio.core.project.examples [8.0.0.Beta1-v20140408-2350-B93]
> Cannot satisfy dependency:
> From: JBoss Developer Studio (Core Features) 8.0.0.Beta2-v20140613-0252-B130 (com.jboss.devstudio.core.feature.feature.group 8.0.0.Beta2-v20140613-0252-B130)
> To: com.jboss.devstudio.core.project.examples [8.0.0.Beta2-v20140613-0252-B130]
> Cannot satisfy dependency:
> From: JBoss Developer Studio (Branded Product) 8.0.0.Beta1-v20140408-2350-B93 (com.jboss.devstudio.core.package 8.0.0.Beta1-v20140408-2350-B93)
> To: com.jboss.devstudio.core.feature.feature.group [8.0.0.Beta1-v20140408-2350-B93]
> {code}
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months
[JBoss JIRA] (JBIDE-17613) IWAB0014E Unexpected exception occurred
by Brian Fitzpatrick (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17613?page=com.atlassian.jira.plugi... ]
Brian Fitzpatrick commented on JBIDE-17613:
-------------------------------------------
[~jpeterka] Can you verify this is still an issue in the 4.2.0.Beta3 build?
> IWAB0014E Unexpected exception occurred
> ---------------------------------------
>
> Key: JBIDE-17613
> URL: https://issues.jboss.org/browse/JBIDE-17613
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: upstream, webservices
> Affects Versions: 4.2.0.Beta1
> Environment: OS: Microsoft Windows [versão 6.1.7601]
> JBoss Development Tools 8.0.0 Beta1
> wildfly-8.1.0.CR1
> Reporter: Jiri Peterka
> Assignee: Brian Fitzpatrick
> Fix For: 4.2.0.Beta3
>
> Attachments: CommonComponents.xsd, FaultType.xsd, jbosstools-diagnostics-20140514154412.zip, VistoriaServiceMessageV1_0.xsd, VistoriaServiceSoap11V1_0.wsdl, VistoriaServiceV1_0.wsdl
>
>
> I try to generate the classes from a WSDL that is composed with the import of a seccond WSDL and an error happens.
> IWAB0014E Unexpected exception occurred.
>
> java.lang.NullPointerException
> at org.eclipse.jst.ws.internal.common.J2EEUtils.isComponentAssociated(J2EEUtils.java:1000)
> at org.eclipse.jst.ws.internal.common.J2EEUtils.isComponentAssociated(J2EEUtils.java:987)
> at org.eclipse.jst.ws.internal.consumption.command.common.AssociateModuleWithEARCommand.execute(AssociateModuleWithEARCommand.java:55)
> at org.eclipse.jst.ws.internal.consumption.ui.extension.PreClientAssembleCommand.execute(PreClientAssembleCommand.java:79)
> at org.eclipse.wst.command.internal.env.core.fragment.CommandFragmentEngine.runCommand(CommandFragmentEngine.java:419)
> at org.eclipse.wst.command.internal.env.core.fragment.CommandFragmentEngine.visitTop(CommandFragmentEngine.java:359)
> at org.eclipse.wst.command.internal.env.core.fragment.CommandFragmentEngine.moveForwardToNextStop(CommandFragmentEngine.java:254)
> at org.eclipse.wst.command.internal.env.ui.widgets.SimpleCommandEngineManager$6.run(SimpleCommandEngineManager.java:294)
> at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:466)
> at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:374)
> at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:1059)
> at org.eclipse.wst.command.internal.env.ui.widgets.SimpleCommandEngineManager.runForwardToNextStop(SimpleCommandEngineManager.java:264)
> at org.eclipse.wst.command.internal.env.ui.widgets.WizardPageManager.runForwardToNextStop(WizardPageManager.java:91)
> at org.eclipse.wst.command.internal.env.ui.widgets.WizardPageManager.performFinish(WizardPageManager.java:262)
> at org.eclipse.wst.command.internal.env.ui.widgets.DynamicWizard.performFinish(DynamicWizard.java:382)
> at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:853)
> at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:438)
> at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:636)
> at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4353)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1061)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4172)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3761)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:832)
> at org.eclipse.jface.window.Window.open(Window.java:808)
> at org.eclipse.wst.command.internal.env.ui.widgets.popup.DynamicPopupWizard.run(DynamicPopupWizard.java:130)
> at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:251)
> at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:595)
> at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:511)
> at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:420)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
> at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4353)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1061)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4172)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3761)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1122)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1006)
> at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:147)
> at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:630)
> at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:574)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
> at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:125)
> at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:133)
> at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:103)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:378)
> at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:232)
> 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:648)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:603)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1462)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1438)
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)
11 years, 9 months