[JBoss JIRA] (JBDS-3408) installer is trying to reach download.jboss.org for content
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBDS-3408?page=com.atlassian.jira.plugin.... ]
Nick Boldt updated JBDS-3408:
-----------------------------
Attachment: JBDS3408.install.jboss-devstudio-9.0.0.Beta1-v20150430-1113-B3095-installer-standalone.jar.log.txt
Steps to (not be able to) reproduce:
1. Download jboss-devstudio-9.0.0.Beta1-v20150430-1113-B3095-installer-standalone.jar
2. Disable network (verified by trying to ping google.com, eclipse.org, cnn.com):
{code}
$➔ ping google.com
ping: unknown host google.com
[12:57:52] nboldt@t540p-fc20-vm01:~/tmp
$➔ ping cnn.com
ping: unknown host cnn.com
[12:57:59] nboldt@t540p-fc20-vm01:~/tmp
$➔ ping eclipse.org
ping: unknown host eclipse.org
{code}
2. Install:
{code}java -jar -DTRACE=true jboss-devstudio-9.0.0.Beta1-v20150430-1113-B3095-installer-standalone.jar | tee JBDS3408.install.jboss-devstudio-9.0.0.Beta1-v20150430-1113-B3095-installer-standalone.jar.log.txt{code}
3. resulting log showing successful install & no references to the outside world:
[^JBDS3408.install.jboss-devstudio-9.0.0.Beta1-v20150430-1113-B3095-installer-standalone.jar.log.txt]
4. Note: On startup of JBDS, the new Central page showed an error (because Fred's new remotely hosted Central page could not be loaded) which further verifies installation works offline.
> installer is trying to reach download.jboss.org for content
> -----------------------------------------------------------
>
> Key: JBDS-3408
> URL: https://issues.jboss.org/browse/JBDS-3408
> Project: Developer Studio (JBoss Developer Studio)
> Issue Type: Bug
> Components: installer
> Affects Versions: 8.0.0.Alpha2
> Reporter: Max Rydahl Andersen
> Assignee: Nick Boldt
> Priority: Critical
> Fix For: 9.0.0.Beta1
>
> Attachments: JBDS3408.install.jboss-devstudio-9.0.0.Beta1-v20150430-1113-B3095-installer-standalone.jar.log.txt
>
>
> Running latest devstudio 9 installer I caught it in reaching out to download.jboss.org which it should have *zero* links/dependency on.
> My guess is there is an updatesite that have bad reference to download.jboss.org that we need fixing.
> See screenshot at https://www.dropbox.com/s/wkr30jlvdc7d8wu/Screenshot%202015-04-15%2013.11...
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months
[JBoss JIRA] (JBIDE-19342) Update code to cope with generics added to org.eclipse.core.runtime package API
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19342?page=com.atlassian.jira.plugi... ]
Denis Golovin edited comment on JBIDE-19342 at 4/30/15 12:36 PM:
-----------------------------------------------------------------
Building IAdapter hierarchy is not working for me, it fails with error explained here [451352|https://bugs.eclipse.org/bugs/show_bug.cgi?id=451352].
was (Author: dgolovin):
Building IAdapter hierarchy is not working for me fails with error explained here [451352|https://bugs.eclipse.org/bugs/show_bug.cgi?id=451352].
> Update code to cope with generics added to org.eclipse.core.runtime package API
> --------------------------------------------------------------------------------
>
> Key: JBIDE-19342
> URL: https://issues.jboss.org/browse/JBIDE-19342
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: aerogear-hybrid, archives, batch, bean-validation, birt, browsersim, cdi, cdi-extensions, central, common/jst/core, cordovasim, forge, hibernate, integration-platform, jmx, jsf, jsp/jsf/xml/html source editing
> Affects Versions: 4.3.0.Alpha2
> Reporter: Fred Bricon
> Priority: Minor
> Fix For: 4.3.x
>
>
> We need to detect and address any part of our code affected by generics added to the org.eclipse.core.runtime package API.
> From https://dev.eclipse.org/mhonarc/lists/cross-project-issues-dev/msg11590.html :
> {quote}
> See https://bugs.eclipse.org/bugs/show_bug.cgi?id=442021
> Markus Keller wrote up an nice summary of what consumers should do to fix any warnings that may be caused by this change at https://bugs.eclipse.org/bugs/show_bug.cgi?id=442021#c25
> Here is a copy of the recommendations if you are going to compile against the latest version of org.eclipse.equinox.common:
> 1. In MANIFEST.MF, update your Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.11.0,4.0.0)", or org.eclipse.equinox.common;bundle-version="[3.7.0,4.0.0)", or update your Import-Package: org.eclipse.core.runtime; version="[3.5,4.0)"
> 2. If your bundle re-exports one of these bundles, then you also have to make sure the minor version is incremented.
> 3. Remove unnecessary casts (Clean Up, or Problems view > Quick Fix > Select All)
> 4. Update implementations of IAdaptable#getAdapter(Class<T>), unless you override another implementation of that method that still uses the old signature.
> Typical change:
> Old:
> {code}
> public Object getAdapter(Class adapter) {
> if (ICompilationUnit.class.equals(adapter))
> return getCompilationUnit();
> return null;
> }
> {code}
> New:
> {code}
> public <T> T getAdapter(Class<T> adapter) {
> if (ICompilationUnit.class.equals(adapter))
> return adapter.cast(getCompilationUnit());
> return null;
> }
> {code}
> 5. Update implementations of IAdapterFactory
> Hint for 4. & 5.:
> - Open Type Hierarchy on IAdaptable, etc.
> - In the view menu, select a working set that contains your projects
> - In the methods list of the Type Hierarchy view, select the methods, and then click the first toolbar button (Lock View and Show Members in Hierarchy)
> {quote}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months