Upgrading version of org.eclipse.osgi jar - eclipse

I'm trying to upgrade the OSGI framework jar from 3.8.1 to 3.10.1 but I'm facing some issues like some projects are available under 3.8.1 but not present under 3.10.1.
Examples : Projects such as org.eclipse.osgi.framework.adaptor & org.eclipse.osgi.framework.internal.core are no longer available under 3.10.1 jar but are present in 3.8.1
My project is currently using 3.8.1 but when I'm trying to upgrade to org.eclipse.osgi_3.10.1 then it's showing the following error:
Unresolved bundle : org.eclipse.osgi.framework.adaptor.
What can be the workaround for this?

Related

I am having this error in flutter while using google map through dependency map_view kindly help me

The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.10 and higher.
The following dependencies do not satisfy the required version:
project ':map_view' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.50
Your gradle plugin version that is supported in your project is 1.3.10 and higher, the plugin you are trying to install is using gradle 1.2.50 there for not supported. I suggest you find another plugin since the only map view plugin i found states that is discontinued. I suggest when you pick a plugin to use to check how often it get updated and when the last update happent.

ObjectAid issue with version

Eclipse Kepler Environment:
JDK Compliance 1.6
Installed JREs: jre1.6
System Environment:
Java 1.6
I am using all the versions which should be suitable for ObjectAid, but I am still getting below error.
Error:
The selected wizard could not be started.
Plug-in com.objectaid.uml.cls was unable to load class com.objectaid.uml.cls.editor.NewClassDiagramWizard.
com/objectaid/uml/cls/editor/NewClassDiagramWizard : Unsupported major.minor version 52.0
Can anybody help on this please?
Thanks!
The error indicates you have installed ObjectAid 1.2 which requires JDK 8.
ObjectAid 1.1 still runs on JDK 6.

Trouble installing Control Flow Graph Factory

I just found a plugin that only exists on Eclipse.
First I had some trouble with downloading via their Plugin Manager because I got "javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure". Then I found this and I solved it.
But now I get an error like this:
Cannot complete the install because one or more required items could not be found.
Software being installed: Bytecode Visualizer 4.5.0.201508311741 (com.drgarbage.bytecodevisualizer.feature.group 4.5.0.201508311741)
Missing requirement: Bytecode Visualizer 4.5.0.201508311741 (com.drgarbage.bytecodevisualizer.plugin 4.5.0.201508311741) requires 'bundle org.eclipse.core.runtime [3.7.0,3.12.0)' but it could not be found
Cannot satisfy dependency:
From: Bytecode Visualizer 4.5.0.201508311741 (com.drgarbage.bytecodevisualizer.feature.group 4.5.0.201508311741)
To: com.drgarbage.bytecodevisualizer.plugin [4.5.0.201508311741]
I tried to download all the files and then "Install new software" but I get the same error.
It seems to have something to do with "bundle org.eclipse.core.runtime [3.7.0,3.12.0)' but it could not be found"
Tips?
The [3.7.0,3.12.0) in the org.eclipse.core.runtime message says that a version of the plugin which is at least version 3.7.0 and less than version 3.12.0 is required.
Eclipse Neon has version 3.12.0 of this plugin so it won't match this requirement. So it looks like this code is not supported on Neon and requires an earlier version of Eclipse.

Getting Error while upgrading Sonar to 5.5 Version and failing to Start

I recently upgraded my Sonar Version to 5.5 and all the compatible plugins with it.
Here are the versions of the plugins installed:-
sonar-ldap-plugin-1.5.1.jar
sonar-javascript-plugin-2.13.jar
sonar-java-plugin-3.14.jar
sonar-build-breaker-plugin-2.1.jar
sonar-php-plugin-2.8.jar
sonar-findbugs-plugin-3.3.jar
If I use sonar-findbugs-plugin-3.3.jar, the Sonar is not getting Up and throwing below error :-
java.lang.IllegalArgumentException: The rule 'EC_INCOMPATIBLE_ARRAY_COMPARE' of repository 'findbugs' is declared several times
If I downgrade the Jar to sonar-findbugs-plugin-3.2.jar it works but fails to analyse the Project and throws below error :-
An API incompatibility was encountered while executing org.sonarsource.scanner.maven:sonar-maven-plugin:3.0.2:sonar
I have tried the versions - 3.3,3.3.1 and 3.3.2
Any Help ?

Maven 3.2.5 doesn't work with JDK6

I have an issue and after many attempts don't know how to resolve it.
I have Java/Maven project with JDK 6 and installed Maven 3.2.5 in Eclipse Luna
Now I'm trying to run clean install command to create ZIP package but getting the following error message:
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project ABC: Fatal error compiling: invalid target release: 1.7
Does someone has this issue before and how do you resolve it.?
Could you help me please?
Thanks in advance.
The project you are attempting to compile specifies that the generated bytecode should be for Java 1.7. To do that you have to have a JDK7 or later.
Either change the project to specify 1.6, or upgrade your Java to 1.7. (There is really no reason to still stay on Java 1.6, it is old and obsolete now.)