[JBoss JIRA] (JBIDE-23364) Two different versions of code recommenders and docker tooling in JBT composite site
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23364?page=com.atlassian.jira.plugi... ]
Nick Boldt resolved JBIDE-23364.
--------------------------------
Resolution: Done
Fired up clean Eclipse JavaEE Neon.1a and attempted to install Abridged JBoss Tools category from http://download.jboss.org/jbosstools/neon/snapshots/updates/ ... and I no longer get remediation prompt.
So, resolving this - we be fixed.
> Two different versions of code recommenders and docker tooling in JBT composite site
> ------------------------------------------------------------------------------------
>
> Key: JBIDE-23364
> URL: https://issues.jboss.org/browse/JBIDE-23364
> Project: Tools (JBoss Tools)
> Issue Type: Sub-task
> Components: target-platform
> Affects Versions: 4.4.2.AM2
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Fix For: 4.4.2.AM3
>
> Attachments: docker_versions.png, snipmatch_versions.png
>
>
> This remediation error occurs when trying to install JBT 4.4.2.AM2 into Eclipse JEE bundle Neon.1a:
> {code}
> Your original request has been modified.
> "JavaScript Development Tools" will be ignored because a newer version is already installed.
> "Eclipse JSON Editors and Tools" will be ignored because a newer version is already installed.
> "WST JSON Core" will be ignored because a newer version is already installed.
> Cannot complete the install because of a conflicting dependency.
> Software being installed: Code Recommenders Snipmatch 2.4.0.v20160607-1609 (org.eclipse.recommenders.snipmatch.rcp.feature.feature.group 2.4.0.v20160607-1609)
> Software currently installed: Code Recommenders for Java Developers 2.4.3.v20160913-0645 (org.eclipse.recommenders.rcp.feature.feature.group 2.4.3.v20160913-0645)
> Only one of the following can be installed at once:
> Code Recommenders Dependency Identification UI 2.4.0.v20160607-1609 (org.eclipse.recommenders.coordinates.rcp 2.4.0.v20160607-1609)
> Code Recommenders Dependency Identification UI 2.4.3.v20160913-0645 (org.eclipse.recommenders.coordinates.rcp 2.4.3.v20160913-0645)
> Cannot satisfy dependency:
> From: Code Recommenders for Java Developers 2.4.3.v20160913-0645 (org.eclipse.recommenders.rcp.feature.feature.group 2.4.3.v20160913-0645)
> To: org.eclipse.recommenders.coordinates.rcp [2.4.3.v20160913-0645]
> Cannot satisfy dependency:
> From: Code Recommenders Snipmatch UI 2.4.0.v20160607-1609 (org.eclipse.recommenders.snipmatch.rcp 2.4.0.v20160607-1609)
> To: bundle org.eclipse.recommenders.coordinates.rcp [2.4.0,2.4.1)
> Cannot satisfy dependency:
> From: Code Recommenders Snipmatch 2.4.0.v20160607-1609 (org.eclipse.recommenders.snipmatch.rcp.feature.feature.group 2.4.0.v20160607-1609)
> To: org.eclipse.recommenders.snipmatch.rcp [2.4.0.v20160607-1609]{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 5 months
[JBoss JIRA] (JBDS-4059) RPM errors: Installing rh-eclipse46-devstudio.10.1 into rh-eclipse46 beta.
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-4059?page=com.atlassian.jira.plugin.... ]
Nick Boldt edited comment on JBDS-4059 at 10/21/16 12:48 PM:
-------------------------------------------------------------
OK, so to recap, the solution for now is:
{quote}
* List the features that are non-supportable on Red Hat Linux desktop
** visual page editor & preview - requires xulrunner, which requires GTK2. GTK2 is not supported on RHEL7/Fedora24+)
* Document it (including details about libnotify and GTK3)
* review this limitation for next year's major release train as a team with PM being aware of the issues
* consider developing a VPE and preview that don't require xulrunner/GTK2{quote}
I've added this to RHDEVDOCS-120 so Docs is aware.
was (Author: nickboldt):
OK, so to recap, the solution for now is:
{quote}* List the features that are non-supportable on Red Hat Linux desktop.
* -Exclude or disable them by default in the RPM distro.- (can't be done easily as even vpe.preview needs xulrunner)
* Document it (including details about libnotify and GTK3) and review it for the next year's major release train as a team and with PM being aware of the issues.{quote}
> RPM errors: Installing rh-eclipse46-devstudio.10.1 into rh-eclipse46 beta.
> --------------------------------------------------------------------------
>
> Key: JBDS-4059
> URL: https://issues.jboss.org/browse/JBDS-4059
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: build
> Reporter: Pavol Srna
> Assignee: Nick Boldt
> Fix For: 10.2.0.AM3
>
>
> [~vkadlcik] has run some rpm sanity tests. The findings can be seen here: http://nest.test.redhat.com/mnt/qa/scratch/bkr-hv03-guest19/2016:24366/tp...
> [~nickboldt] can you please investigate? Thanks!
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 5 months
[JBoss JIRA] (JBDS-4070) DevStudio / external OpenShift fails deployment
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBDS-4070?page=com.atlassian.jira.plugin.... ]
Rob Stryker commented on JBDS-4070:
-----------------------------------
> Scan found incompletely copied file content for deployment /opt/eap/standalone/deployments/deploy/deploy/deploy/deploy/deploy/deploy/activemq-rar.rar.
I've seen errors like this when just generically playing with rsync (ie not related to openshift or even our eclipse tools). Generally, it means something is wrong with the rsync process.
Here is a very clear example you can replicate.
{code}
ssh user(a)someremote.com
# type pw
# make example folder structure
mkdir tmp
cd tmp
mkdir rsytest/
touch rsytest/a.txt
touch rsytest/c.txt
mkdir rsytest/out.war/
touch rsytest/out.war/b.txt
touch rsytest/out.war/c.txt
# go back to local machine
exit
rsync -av user@someremote.com:~/tmp/rsytest .
# Watch as rsytest folder appears on local machine
rsync -av . user@someremote.com::~/tmp/rsytest
# Watch as it syncs back up
ssh user(a)someremote.com
rob@arcaner:~$ cd tmp/rsytest
rob@arcaner:~/tmp/rsytest$ ls -1
a.txt
c.txt
out.war
rsytest
rob@arcaner:~/tmp/rsytest$
{code}
As you can see, we now have a nested rsytest due to an improper rsync. If this process is repeated 5 times, you will end up with 5 nested folders.
I would guess that's what si occurring here.
> DevStudio / external OpenShift fails deployment
> -----------------------------------------------
>
> Key: JBDS-4070
> URL: https://issues.jboss.org/browse/JBDS-4070
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 10.1.0.GA
> Environment: DevStudio as used with an external OpenShift
> Reporter: Rick Wagner
> Assignee: Jeff MAURY
> Labels: openshift_v3
> Fix For: 10.2.0.AM3
>
> Attachments: eap-app-server-adapter-publish.png, eap-app-server-adapter-settings.png, kitchensink-ear-deployed-succcessfully.png, kitchensink-ear-projects.png, new-openshift-server-adapter.png
>
>
> If DevStudio (with Server Adapter configured for external OpenShift) is used to deploy an application developed in DevStudio, errors result.
> The reporting user shows indications additional 'deploy' directories are being synthesized as the binary target location. The log reports:
> 15:59:41,588 INFO [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 2) WFLYDS0010: Scan found incompletely copied file content for deployment /opt/eap/standalone/deployments/deploy/deploy/deploy/deploy/deploy/deploy/activemq-rar.rar.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 5 months
[JBoss JIRA] (JBDS-4059) RPM errors: Installing rh-eclipse46-devstudio.10.1 into rh-eclipse46 beta.
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-4059?page=com.atlassian.jira.plugin.... ]
Nick Boldt edited comment on JBDS-4059 at 10/21/16 12:42 PM:
-------------------------------------------------------------
OK, so to recap, the solution for now is:
{quote}* List the features that are non-supportable on Red Hat Linux desktop.
* -Exclude or disable them by default in the RPM distro.- (can't be done easily as even vpe.preview needs xulrunner)
* Document it (including details about libnotify and GTK3) and review it for the next year's major release train as a team and with PM being aware of the issues.{quote}
was (Author: nickboldt):
OK, so to recap, the solution for now is:
{quote}* List the features that are non-supportable on Red Hat Linux desktop.
* -Exclude or disable them by default in the RPM distro.- (can't be done easily)
* Document it (including details about libnotify and GTK3) and review it for the next year's major release train as a team and with PM being aware of the issues.{quote}
> RPM errors: Installing rh-eclipse46-devstudio.10.1 into rh-eclipse46 beta.
> --------------------------------------------------------------------------
>
> Key: JBDS-4059
> URL: https://issues.jboss.org/browse/JBDS-4059
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: build
> Reporter: Pavol Srna
> Assignee: Nick Boldt
> Fix For: 10.2.0.AM3
>
>
> [~vkadlcik] has run some rpm sanity tests. The findings can be seen here: http://nest.test.redhat.com/mnt/qa/scratch/bkr-hv03-guest19/2016:24366/tp...
> [~nickboldt] can you please investigate? Thanks!
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 5 months