[JBoss JIRA] (JBIDE-21346) [RHMAP] Exported mobile app cannot be built in rhmap cloud
by Jeff MAURY (Jira)
[ https://issues.redhat.com/browse/JBIDE-21346?page=com.atlassian.jira.plug... ]
Jeff MAURY closed JBIDE-21346.
------------------------------
Resolution: Won't Fix
aerogear-hybrid is deprecated
> [RHMAP] Exported mobile app cannot be built in rhmap cloud
> ----------------------------------------------------------
>
> Key: JBIDE-21346
> URL: https://issues.redhat.com/browse/JBIDE-21346
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: aerogear-hybrid
> Affects Versions: 4.3.1.Beta1
> Reporter: Pavol Srna
> Assignee: Gorkem Ercan
> Priority: Major
> Fix For: 4.3.x, 4.16.x
>
> Attachments: Screen Shot 2015-12-17 at 10.53.56.png
>
>
> {code}
> [BUILD] Copy application files...
> [BUILD] Copy asset files...
> [BUILD] Adding build task to queue
> [BUILD] Creating project...
> [BUILD] Creating directories...
> [BUILD] Downloading files...
> [BUILD] Unzip files...
> [BUILD] Creating native project...
> [BUILD] Project created. Applying configuration changes and copying app files...
> { [Error: ENOENT, no such file or directory '/data/fh-digger/data/tmp/2d20da63-2d05-442a-8888-558e418202be/unzip/files/plugins/android.json']
> errno: 34,
> code: 'ENOENT',
> path: '/data/fh-digger/data/tmp/2d20da63-2d05-442a-8888-558e418202be/unzip/files/plugins/android.json',
> syscall: 'open' }
> {code}
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 11 months
[JBoss JIRA] (JBIDE-16337) Support debugging of Cordova applications via Weinre and/or WebView debugging support
by Jeff MAURY (Jira)
[ https://issues.redhat.com/browse/JBIDE-16337?page=com.atlassian.jira.plug... ]
Jeff MAURY closed JBIDE-16337.
------------------------------
Resolution: Won't Fix
aerogear-hybrid is deprecated
> Support debugging of Cordova applications via Weinre and/or WebView debugging support
> -------------------------------------------------------------------------------------
>
> Key: JBIDE-16337
> URL: https://issues.redhat.com/browse/JBIDE-16337
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: aerogear-hybrid
> Affects Versions: 4.1.1.Final
> Reporter: Vineet Reynolds
> Priority: Minor
> Fix For: LATER
>
> Original Estimate: 0 minutes
> Remaining Estimate: 0 minutes
>
> Currently, to debug Cordova app running on an emulator or a device (not CordovaSim), one needs to use Weinre (with no JS breakpoint capabilities) or use Safari/Chrome remote debugging (that supports debugging of WebViews with JS breakpoints).
> It would be nice to have this integrated via a "Debug As" menu, so that end-users dont have to
> * setup and run Weinre, or
> * add the webview-debug Cordova plugin to debug Chrome WebViews on Android 4.4
> All debugging strategies are listed here: https://github.com/phonegap/phonegap/wiki/Debugging-in-PhoneGap in case additional techniques can be considered.
> I'm assigning this a priority of minor, since this could be done manually, but bump up if appropriate.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 11 months
[JBoss JIRA] (JBIDE-19342) Update code to cope with generics added to org.eclipse.core.runtime package API
by Jeff MAURY (Jira)
[ https://issues.redhat.com/browse/JBIDE-19342?page=com.atlassian.jira.plug... ]
Jeff MAURY closed JBIDE-19342.
------------------------------
Resolution: Won't Fix
aerogear-hybrid is deprecated
> Update code to cope with generics added to org.eclipse.core.runtime package API
> --------------------------------------------------------------------------------
>
> Key: JBIDE-19342
> URL: https://issues.redhat.com/browse/JBIDE-19342
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: aerogear-hybrid, archives, batch, bean-validation, birt, browsersim, cdi, cdi-extensions, central, common, cordovasim, forge, hibernate, integration-platform, jmx, jsf, jsp/jsf/xml/html-source-editing
> Affects Versions: 4.3.0.Alpha2
> Reporter: Fred Bricon
> Assignee: Jeff MAURY
> Priority: Minor
> Fix For: 4.16.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
(v7.13.8#713008)
5 years, 11 months
[JBoss JIRA] (JBDS-4831) Missing Repository in pom.xml
by Jeff MAURY (Jira)
[ https://issues.redhat.com/browse/JBDS-4831?page=com.atlassian.jira.plugin... ]
Jeff MAURY reassigned JBDS-4831:
--------------------------------
Assignee: Aurélien Pupier
> Missing Repository in pom.xml
> -----------------------------
>
> Key: JBDS-4831
> URL: https://issues.redhat.com/browse/JBDS-4831
> Project: Red Hat CodeReady Studio (devstudio)
> Issue Type: Bug
> Components: fusetools
> Affects Versions: 12.15.0.GA
> Reporter: Andre Kreienbring
> Assignee: Aurélien Pupier
> Priority: Critical
>
> Using CodeReady Studio with Eclipse 202003 I've seen a BUILD Failure when I added the Restlet Component to a route:
> {quote}[WARNING] The POM for org.restlet.jee:org.restlet:jar:2.3.12 is missing, no dependency information available
> [WARNING] The POM for org.restlet.jee:org.restlet.ext.httpclient:jar:2.3.12 is missing, no dependency information available{quote}
> Adding
> {quote} <repository>
> <id>spring-plugin-repository</id>
> <url>https://repo.spring.io/plugins-release</url>
> </repository>
> {quote}to the pom.xml solved the issue.
> The projekt was autogenerated by New -> Fuse Integration Projekt and selecting "Springboot"...
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 11 months
[JBoss JIRA] (JBDS-4831) Missing Repository in pom.xml
by Jeff MAURY (Jira)
[ https://issues.redhat.com/browse/JBDS-4831?page=com.atlassian.jira.plugin... ]
Jeff MAURY updated JBDS-4831:
-----------------------------
Component/s: fusetools
> Missing Repository in pom.xml
> -----------------------------
>
> Key: JBDS-4831
> URL: https://issues.redhat.com/browse/JBDS-4831
> Project: Red Hat CodeReady Studio (devstudio)
> Issue Type: Bug
> Components: fusetools
> Affects Versions: 12.15.0.GA
> Reporter: Andre Kreienbring
> Priority: Critical
>
> Using CodeReady Studio with Eclipse 202003 I've seen a BUILD Failure when I added the Restlet Component to a route:
> {quote}[WARNING] The POM for org.restlet.jee:org.restlet:jar:2.3.12 is missing, no dependency information available
> [WARNING] The POM for org.restlet.jee:org.restlet.ext.httpclient:jar:2.3.12 is missing, no dependency information available{quote}
> Adding
> {quote} <repository>
> <id>spring-plugin-repository</id>
> <url>https://repo.spring.io/plugins-release</url>
> </repository>
> {quote}to the pom.xml solved the issue.
> The projekt was autogenerated by New -> Fuse Integration Projekt and selecting "Springboot"...
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
5 years, 11 months