[JBoss JIRA] (JBIDE-21379) Enhance emulated link
by Viacheslav Kabanovich (JIRA)
Viacheslav Kabanovich created JBIDE-21379:
---------------------------------------------
Summary: Enhance emulated link
Key: JBIDE-21379
URL: https://issues.jboss.org/browse/JBIDE-21379
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: openshift
Affects Versions: 4.4.0.Alpha1
Reporter: Viacheslav Kabanovich
Assignee: Viacheslav Kabanovich
Fix For: 4.4.0.Alpha1
Emulated link in 'Sign in to Openshift' wizard 'Deploy Image to OpenShift', etc has several drawbacks:
1. It shows hand cursor at the entire text, not only the one styled as link.
2. It acts on mouse down, whereas commonly links act on mouse up.
3. If mouse remains down, action is called repeatedly.
I suggest the enhancement, [~fbricon], please take a look at it. It should be taken into account, that the emulation itself exists because of failure of standard Link on Mac, so that my suggestion should be tested on Mac.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 3 months
[JBoss JIRA] (JBIDE-21378) EL Knowledge Base Problem with enums
by Alexey Kazakov (JIRA)
Alexey Kazakov created JBIDE-21378:
--------------------------------------
Summary: EL Knowledge Base Problem with enums
Key: JBIDE-21378
URL: https://issues.jboss.org/browse/JBIDE-21378
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsf
Environment: Eclipse Mars.1 (4.5.1), Primefaces 5.x
Reporter: Andrei Ivanov
Assignee: Viacheslav Kabanovich
Priority: Minor
Fix For: 4.4.0.Alpha1
Enum properties and method are not recognized:
In this case, {{label}} is recognized and shows up in the completion suggestions, but {{name()}} is not and marked as unrecognized.
{code:xml}
<p:dataTable value="#{page.dataModel}" var="managerData" lazy="true"
rowStyleClass="#{managerData.status.label} labor-protection-#{managerData.status.name().replace('_', '-').toLowerCase()}">
...
</p:dataTable>
{code}
{code:java}
public enum SignOffStatus {
VALID("Valid"),
ALMOST_EXPIRED("Almost expired"),
EXPIRED("Expired");
private final String label;
private SignOffStatus(String label) {
this.label = label;
}
public String getLabel() {
return label;
}
}
{code}
In a different page:
{code:xml}
<p:selectOneMenu value="#{instancePage.instanceCriteria.status}">
<f:selectItem itemLabel="--select--" itemValue="#{null}" />
<f:selectItems value="#{appBean.getStatuses()}" var="stat" itemLabel="#{stat.label}" />
</p:selectOneMenu>
{code}
The enum has a {{getLabel()}} as the one above, but in this context it's not recognized ({{"label" cannot be resolved}}).
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 3 months
[JBoss JIRA] (JBIDE-21378) EL Knowledge Base Problem with enums
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21378?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-21378:
-----------------------------------
Fix Version/s: 4.3.1.Beta2
(was: 4.4.0.Alpha1)
> EL Knowledge Base Problem with enums
> ------------------------------------
>
> Key: JBIDE-21378
> URL: https://issues.jboss.org/browse/JBIDE-21378
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsf
> Environment: Eclipse Mars.1 (4.5.1), Primefaces 5.x
> Reporter: Andrei Ivanov
> Assignee: Viacheslav Kabanovich
> Priority: Minor
> Fix For: 4.3.1.Beta2
>
>
> Enum properties and method are not recognized:
> In this case, {{label}} is recognized and shows up in the completion suggestions, but {{name()}} is not and marked as unrecognized.
> {code:xml}
> <p:dataTable value="#{page.dataModel}" var="managerData" lazy="true"
> rowStyleClass="#{managerData.status.label} labor-protection-#{managerData.status.name().replace('_', '-').toLowerCase()}">
> ...
> </p:dataTable>
> {code}
> {code:java}
> public enum SignOffStatus {
> VALID("Valid"),
> ALMOST_EXPIRED("Almost expired"),
> EXPIRED("Expired");
> private final String label;
> private SignOffStatus(String label) {
> this.label = label;
> }
> public String getLabel() {
> return label;
> }
> }
> {code}
> In a different page:
> {code:xml}
> <p:selectOneMenu value="#{instancePage.instanceCriteria.status}">
> <f:selectItem itemLabel="--select--" itemValue="#{null}" />
> <f:selectItems value="#{appBean.getStatuses()}" var="stat" itemLabel="#{stat.label}" />
> </p:selectOneMenu>
> {code}
> The enum has a {{getLabel()}} as the one above, but in this context it's not recognized ({{"label" cannot be resolved}}).
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 3 months
[JBoss JIRA] (JBIDE-21378) EL Knowledge Base Problem with enums
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21378?page=com.atlassian.jira.plugi... ]
Alexey Kazakov resolved JBIDE-21378.
------------------------------------
Resolution: Done
> EL Knowledge Base Problem with enums
> ------------------------------------
>
> Key: JBIDE-21378
> URL: https://issues.jboss.org/browse/JBIDE-21378
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: jsf
> Environment: Eclipse Mars.1 (4.5.1), Primefaces 5.x
> Reporter: Andrei Ivanov
> Assignee: Viacheslav Kabanovich
> Priority: Minor
> Fix For: 4.3.1.Beta2
>
>
> Enum properties and method are not recognized:
> In this case, {{label}} is recognized and shows up in the completion suggestions, but {{name()}} is not and marked as unrecognized.
> {code:xml}
> <p:dataTable value="#{page.dataModel}" var="managerData" lazy="true"
> rowStyleClass="#{managerData.status.label} labor-protection-#{managerData.status.name().replace('_', '-').toLowerCase()}">
> ...
> </p:dataTable>
> {code}
> {code:java}
> public enum SignOffStatus {
> VALID("Valid"),
> ALMOST_EXPIRED("Almost expired"),
> EXPIRED("Expired");
> private final String label;
> private SignOffStatus(String label) {
> this.label = label;
> }
> public String getLabel() {
> return label;
> }
> }
> {code}
> In a different page:
> {code:xml}
> <p:selectOneMenu value="#{instancePage.instanceCriteria.status}">
> <f:selectItem itemLabel="--select--" itemValue="#{null}" />
> <f:selectItems value="#{appBean.getStatuses()}" var="stat" itemLabel="#{stat.label}" />
> </p:selectOneMenu>
> {code}
> The enum has a {{getLabel()}} as the one above, but in this context it's not recognized ({{"label" cannot be resolved}}).
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 3 months
[JBoss JIRA] (JBTIS-538) Update Mars JBTIS TP to pick up JBDS TP w/ latest forge 3.0.0.Alpha2 runtime
by Paul Leacu (JIRA)
[ https://issues.jboss.org/browse/JBTIS-538?page=com.atlassian.jira.plugin.... ]
Paul Leacu closed JBTIS-538.
----------------------------
Resolution: Done
JBTIS TP sync'd with JBDS core TP 4.3.1.Beta1
> Update Mars JBTIS TP to pick up JBDS TP w/ latest forge 3.0.0.Alpha2 runtime
> ----------------------------------------------------------------------------
>
> Key: JBTIS-538
> URL: https://issues.jboss.org/browse/JBTIS-538
> Project: JBoss Tools Integration Stack
> Issue Type: Feature Request
> Components: target-platform
> Affects Versions: 4.3.0.Final-TP
> Reporter: Paul Leacu
> Assignee: Paul Leacu
> Fix For: 4.3.1.Final-TP
>
>
> *Reason:* Update Mars JBTIS TP to pick up JBDS TP w/ org.jboss.tools.forge w/ latest forge 3.0.0.Alpha2 runtime
> *Project page/sources:*
> *Version:* 4.3.1
> *License and owner:* EPL
> *Original p2 repo:*
> *JBoss mirror:*
> *Include Sources:* Yes
> *Affected JBoss Tools components:* JBDSIS
> *Include in JBDS:* Yes (JBDSIS)
> *Type of dependency:* distribution
> *List of bundles added/removed:*
> {code}
> < org.jboss.tools.community.central [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.common [3.7.0.Final-v20150924-2213-B38]
> < org.jboss.tools.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.cheatsheet [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.central.feature.feature.jar [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.central.feature.feature.group [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.project.examples [3.0.0.Final-v20151001-1531-B45]
> > org.jboss.tools.community.project.examples [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.common [3.7.1.Beta1-v20151207-2136-B58]
> > org.jboss.tools.community.central.feature.feature.group [2.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.central.feature.feature.jar [2.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.feature.feature.jar [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.central [2.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.feature.feature.group [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.cheatsheet [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.project.examples.feature.feature.group [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.project.examples.feature.feature.jar [3.0.1.Beta1-v20151116-2016-B57]
> === Summary ===
> file:///home/pleacu/git-clone/jbosstools-integration-stack.orig/target-platform/target/target-platform.target.repo contains 11 unique IUs
> file:///home/pleacu/git-clone/jbosstools-integration-stack/target-platform/target/target-platform.target.repo contains 11 unique IUs
> < org.jboss.tools.community.central [2.0.0.Final-v20151001-1531-B45]
> < org.eclipse.emf.compare.edit [4.1.0.201509010903]
> < org.eclipse.emf.compare.doc [3.2.1.201509010903]
> < org.eclipse.emf.compare.ide.ui [4.1.1.201509010903]
> < org.eclipse.emf.compare.ide.ui.feature.group [3.1.1.201509010903]
> < org.eclipse.emf.compare [3.2.0.201509010903]
> < org.eclipse.emf.compare.feature.jar [3.1.1.201509010903]
> < org.eclipse.emf.compare.rcp.ui [4.1.1.201509010903]
> < org.jboss.tools.community.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
> < org.eclipse.emf.compare.ide [3.2.1.201509010903]
> < org.eclipse.emf.compare.rcp [2.3.1.201509010903]
> < org.eclipse.emf.compare.ide.ui.feature.jar [3.1.1.201509010903]
> < org.jboss.tools.community.central.feature.feature.jar [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.central.feature.feature.group [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.cheatsheet [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples [3.0.0.Final-v20151001-1531-B45]
> < org.eclipse.emf.compare.feature.group [3.1.1.201509010903]
> < org.jboss.tools.community.project.examples [3.0.0.Final-v20151001-1531-B45]
> > org.eclipse.emf.compare.ide [3.2.1.201509120604]
> > org.jboss.tools.community.central.feature.feature.jar [2.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.rcp [2.3.1.201509120604]
> > org.eclipse.emf.compare.rcp.ui [4.1.1.201509120604]
> > org.eclipse.emf.compare.ide.ui.feature.jar [3.1.1.201509120604]
> > org.jboss.tools.community.project.examples.feature.feature.group [3.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.ide.ui [4.1.1.201509120604]
> > org.eclipse.emf.compare.feature.jar [3.1.1.201509120604]
> > org.jboss.tools.project.examples.feature.feature.jar [3.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.feature.group [3.1.1.201509120604]
> > org.jboss.tools.project.examples [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.cheatsheet [3.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.doc [3.2.1.201509120604]
> > org.jboss.tools.community.project.examples [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.central [2.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.feature.feature.group [3.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare [3.2.0.201509120604]
> > org.jboss.tools.community.central.feature.feature.group [2.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.ide.ui.feature.group [3.1.1.201509120604]
> > org.eclipse.emf.compare.edit [4.1.0.201509120604]
> > org.jboss.tools.community.project.examples.feature.feature.jar [3.0.1.Beta1-v20151116-2016-B57]
> === Summary ===
> file:///home/pleacu/git-clone/jbosstools-integration-stack.orig/target-platform/target/target-platform-ea.target.repo contains 21 unique IUs
> file:///home/pleacu/git-clone/jbosstools-integration-stack/target-platform/target/target-platform-ea.target.repo contains 21 unique IUs
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 3 months
[JBoss JIRA] (JBTIS-538) Update Mars JBTIS TP to pick up JBDS TP w/ latest forge 3.0.0.Alpha2 runtime
by Paul Leacu (JIRA)
[ https://issues.jboss.org/browse/JBTIS-538?page=com.atlassian.jira.plugin.... ]
Paul Leacu commented on JBTIS-538:
----------------------------------
{code}
< org.jboss.tools.community.central [2.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.common [3.7.0.Final-v20150924-2213-B38]
< org.jboss.tools.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.jmx.core.test [1.7.0.Final-v20150924-2222-B46]
< org.jboss.tools.community.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.project.examples.cheatsheet [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.common.test [3.7.0.Final-v20150924-2213-B38]
< org.jboss.tools.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.as.test.core [3.1.0.Final-v20150924-2222-B46]
< org.jboss.tools.community.central.feature.feature.jar [2.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.community.central.feature.feature.group [2.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.project.examples [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.tests [3.6.0.Final-v20150924-2213-B38]
< org.jboss.tools.community.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.community.project.examples [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.common.base.test [3.7.0.Final-v20150924-2213-B38]
> org.jboss.tools.community.project.examples.feature.feature.group [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.project.examples.feature.feature.group [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.project.examples.cheatsheet [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.tests [3.6.1.Beta1-v20151212-0108-B64]
> org.jboss.tools.community.central.feature.feature.group [2.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.project.examples [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.community.project.examples [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.project.examples.feature.feature.jar [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.common.test [3.7.1.Beta1-v20151212-0108-B64]
> org.jboss.tools.common.base.test [3.7.1.Beta1-v20151212-0108-B64]
> org.jboss.tools.community.project.examples.feature.feature.jar [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.community.central.feature.feature.jar [2.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.jmx.core.test [1.7.1.Beta1-v20151212-0124-B73]
> org.jboss.tools.community.central [2.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.as.test.core [3.1.1.Beta1-v20151212-0124-B73]
> org.jboss.tools.common [3.7.1.Beta1-v20151212-0108-B64]
=== Summary ===
file:///home/pleacu/git-clone/jbosstools-integration-stack.orig/target-platform/target/target-platform.target.repo contains 16 unique IUs
file:///home/pleacu/git-clone/jbosstools-integration-stack/target-platform/target/target-platform.target.repo contains 16 unique IUs
< org.jboss.tools.community.central [2.0.0.Final-v20151001-1531-B45]
< org.eclipse.emf.compare.edit [4.1.0.201509010903]
< org.eclipse.emf.compare.doc [3.2.1.201509010903]
< org.eclipse.emf.compare.ide.ui [4.1.1.201509010903]
< org.eclipse.emf.compare.ide.ui.feature.group [3.1.1.201509010903]
< org.eclipse.emf.compare [3.2.0.201509010903]
< org.eclipse.emf.compare.feature.jar [3.1.1.201509010903]
< org.eclipse.emf.compare.rcp.ui [4.1.1.201509010903]
< org.jboss.tools.community.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
< org.eclipse.emf.compare.ide [3.2.1.201509010903]
< org.eclipse.emf.compare.rcp [2.3.1.201509010903]
< org.eclipse.emf.compare.ide.ui.feature.jar [3.1.1.201509010903]
< org.jboss.tools.community.central.feature.feature.jar [2.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.community.central.feature.feature.group [2.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.community.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.project.examples.cheatsheet [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
< org.jboss.tools.project.examples [3.0.0.Final-v20151001-1531-B45]
< org.eclipse.emf.compare.feature.group [3.1.1.201509010903]
< org.jboss.tools.community.project.examples [3.0.0.Final-v20151001-1531-B45]
> org.eclipse.emf.compare.ide [3.2.1.201509120604]
> org.eclipse.emf.compare.rcp [2.3.1.201509120604]
> org.jboss.tools.project.examples [3.0.1.Beta1-v20151212-0506-B67]
> org.eclipse.emf.compare.rcp.ui [4.1.1.201509120604]
> org.eclipse.emf.compare.ide.ui.feature.jar [3.1.1.201509120604]
> org.jboss.tools.community.project.examples.feature.feature.group [3.0.1.Beta1-v20151212-0506-B67]
> org.eclipse.emf.compare.ide.ui [4.1.1.201509120604]
> org.eclipse.emf.compare.feature.jar [3.1.1.201509120604]
> org.eclipse.emf.compare.feature.group [3.1.1.201509120604]
> org.eclipse.emf.compare.doc [3.2.1.201509120604]
> org.jboss.tools.community.central [2.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.community.central.feature.feature.group [2.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.project.examples.feature.feature.jar [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.community.project.examples.feature.feature.jar [3.0.1.Beta1-v20151212-0506-B67]
> org.eclipse.emf.compare [3.2.0.201509120604]
> org.jboss.tools.community.central.feature.feature.jar [2.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.project.examples.feature.feature.group [3.0.1.Beta1-v20151212-0506-B67]
> org.jboss.tools.project.examples.cheatsheet [3.0.1.Beta1-v20151212-0506-B67]
> org.eclipse.emf.compare.ide.ui.feature.group [3.1.1.201509120604]
> org.jboss.tools.community.project.examples [3.0.1.Beta1-v20151212-0506-B67]
> org.eclipse.emf.compare.edit [4.1.0.201509120604]
=== Summary ===
file:///home/pleacu/git-clone/jbosstools-integration-stack.orig/target-platform/target/target-platform-ea.target.repo contains 21 unique IUs
file:///home/pleacu/git-clone/jbosstools-integration-stack/target-platform/target/target-platform-ea.target.repo contains 21 unique IUs
{code}
> Update Mars JBTIS TP to pick up JBDS TP w/ latest forge 3.0.0.Alpha2 runtime
> ----------------------------------------------------------------------------
>
> Key: JBTIS-538
> URL: https://issues.jboss.org/browse/JBTIS-538
> Project: JBoss Tools Integration Stack
> Issue Type: Feature Request
> Components: target-platform
> Affects Versions: 4.3.0.Final-TP
> Reporter: Paul Leacu
> Assignee: Paul Leacu
> Fix For: 4.3.1.Final-TP
>
>
> *Reason:* Update Mars JBTIS TP to pick up JBDS TP w/ org.jboss.tools.forge w/ latest forge 3.0.0.Alpha2 runtime
> *Project page/sources:*
> *Version:* 4.3.1
> *License and owner:* EPL
> *Original p2 repo:*
> *JBoss mirror:*
> *Include Sources:* Yes
> *Affected JBoss Tools components:* JBDSIS
> *Include in JBDS:* Yes (JBDSIS)
> *Type of dependency:* distribution
> *List of bundles added/removed:*
> {code}
> < org.jboss.tools.community.central [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.common [3.7.0.Final-v20150924-2213-B38]
> < org.jboss.tools.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.cheatsheet [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.central.feature.feature.jar [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.central.feature.feature.group [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.project.examples [3.0.0.Final-v20151001-1531-B45]
> > org.jboss.tools.community.project.examples [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.common [3.7.1.Beta1-v20151207-2136-B58]
> > org.jboss.tools.community.central.feature.feature.group [2.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.central.feature.feature.jar [2.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.feature.feature.jar [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.central [2.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.feature.feature.group [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.cheatsheet [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.project.examples.feature.feature.group [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.project.examples.feature.feature.jar [3.0.1.Beta1-v20151116-2016-B57]
> === Summary ===
> file:///home/pleacu/git-clone/jbosstools-integration-stack.orig/target-platform/target/target-platform.target.repo contains 11 unique IUs
> file:///home/pleacu/git-clone/jbosstools-integration-stack/target-platform/target/target-platform.target.repo contains 11 unique IUs
> < org.jboss.tools.community.central [2.0.0.Final-v20151001-1531-B45]
> < org.eclipse.emf.compare.edit [4.1.0.201509010903]
> < org.eclipse.emf.compare.doc [3.2.1.201509010903]
> < org.eclipse.emf.compare.ide.ui [4.1.1.201509010903]
> < org.eclipse.emf.compare.ide.ui.feature.group [3.1.1.201509010903]
> < org.eclipse.emf.compare [3.2.0.201509010903]
> < org.eclipse.emf.compare.feature.jar [3.1.1.201509010903]
> < org.eclipse.emf.compare.rcp.ui [4.1.1.201509010903]
> < org.jboss.tools.community.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
> < org.eclipse.emf.compare.ide [3.2.1.201509010903]
> < org.eclipse.emf.compare.rcp [2.3.1.201509010903]
> < org.eclipse.emf.compare.ide.ui.feature.jar [3.1.1.201509010903]
> < org.jboss.tools.community.central.feature.feature.jar [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.central.feature.feature.group [2.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.community.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.feature.feature.jar [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.cheatsheet [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples.feature.feature.group [3.0.0.Final-v20151001-1531-B45]
> < org.jboss.tools.project.examples [3.0.0.Final-v20151001-1531-B45]
> < org.eclipse.emf.compare.feature.group [3.1.1.201509010903]
> < org.jboss.tools.community.project.examples [3.0.0.Final-v20151001-1531-B45]
> > org.eclipse.emf.compare.ide [3.2.1.201509120604]
> > org.jboss.tools.community.central.feature.feature.jar [2.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.rcp [2.3.1.201509120604]
> > org.eclipse.emf.compare.rcp.ui [4.1.1.201509120604]
> > org.eclipse.emf.compare.ide.ui.feature.jar [3.1.1.201509120604]
> > org.jboss.tools.community.project.examples.feature.feature.group [3.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.ide.ui [4.1.1.201509120604]
> > org.eclipse.emf.compare.feature.jar [3.1.1.201509120604]
> > org.jboss.tools.project.examples.feature.feature.jar [3.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.feature.group [3.1.1.201509120604]
> > org.jboss.tools.project.examples [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.cheatsheet [3.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.doc [3.2.1.201509120604]
> > org.jboss.tools.community.project.examples [3.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.community.central [2.0.1.Beta1-v20151116-2016-B57]
> > org.jboss.tools.project.examples.feature.feature.group [3.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare [3.2.0.201509120604]
> > org.jboss.tools.community.central.feature.feature.group [2.0.1.Beta1-v20151116-2016-B57]
> > org.eclipse.emf.compare.ide.ui.feature.group [3.1.1.201509120604]
> > org.eclipse.emf.compare.edit [4.1.0.201509120604]
> > org.jboss.tools.community.project.examples.feature.feature.jar [3.0.1.Beta1-v20151116-2016-B57]
> === Summary ===
> file:///home/pleacu/git-clone/jbosstools-integration-stack.orig/target-platform/target/target-platform-ea.target.repo contains 21 unique IUs
> file:///home/pleacu/git-clone/jbosstools-integration-stack/target-platform/target/target-platform-ea.target.repo contains 21 unique IUs
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 3 months
[JBoss JIRA] (JBIDE-20331) install grinder fails if blocked by Firefox
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-20331?page=com.atlassian.jira.plugi... ]
Nick Boldt commented on JBIDE-20331:
------------------------------------
* build 3810 on dev112 - http://jenkins.mw.lab.eng.bos.redhat.com/hudson/view/DevStudio/view/DevSt...
> install grinder fails if blocked by Firefox
> -------------------------------------------
>
> Key: JBIDE-20331
> URL: https://issues.jboss.org/browse/JBIDE-20331
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: build
> Affects Versions: 4.3.0.Beta2
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Fix For: 4.3.x, 4.4.0.Alpha1
>
> Attachments: build-history.png, ff-profile-manager.png, install-grinder-fail.txt, install-grinder-firefox-problem-testInstall(org.jboss.tools.tests.installation.InstallTest).jpeg, new-firefox-block-UI_dev112.png, new-firefox-block-UI_dev59.png, virt1-ftl.png, virt2-ftl.png
>
>
> {code:title=http://jenkins.mw.lab.eng.bos.redhat.com/hudson/job/jbosstools-install-grinder.install-tests.matrix_master/PROJECT=jbosstools,eclipseBundleVersion=mars.R,jdk=jdk1.8,label_exp=%28RHEL6||RHEL7||beaker||jboss-prod%29&&%28x86||x86_64%29/3157/consoleFull}
> 08:02:18 java.lang.RuntimeException: Unable to aquire PluginConverter service during generation for: /mnt/hudson_workspace/workspace/jbosstools-install-grinder.install-tests.matrix_master/d6768101/eclipse/plugins/org.eclipse.oomph.base_1.1.0.v20150609-0914.jar{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 3 months