11,622 questions
0
votes
2
answers
103
views
java.lang.ClassNotFoundException: okio.Buffer when using OkHttp inside Eclipse plugin (OSGi)
I am developing an Eclipse plugin (OSGi environment) and trying to use OkHttp 4.11.0 to send HTTP requests. However, I get the following runtime error:
java.lang.ClassNotFoundException: okio.Buffer ...
2
votes
0
answers
73
views
How can I apply "organize imports" action programmatically in an Eclipse batch application?
I'm creating an Eclipse batch application that applies source cleanups (equivalent of right-click menu Source -> Clean Up) from a profile file. It's an XML file listing the rules and whether they'...
0
votes
0
answers
41
views
Installing Favorite Plugins Into Eclipse Marketplace
I have "Eclipse IDE for Java Developers (includes Incubating components) Version: 2025-09 (4.37.0)". When I go to the Marketplace client, there is no "favorites" tab that shows my ...
0
votes
0
answers
23
views
Eclipse P2: Updating the plugin with a custom Provisioning Action
We are developing plugins for Eclipse and we have a plugin (let's call it pluginA) that has a p2.inf under /pluginA/META-INF. This file contains some configuration instructions when installed/updated. ...
0
votes
0
answers
77
views
Generating java source using java in an eclipse plugin project
I would like to generate some test code (testdata and stubs) during the build of an eclipse-test-plugin, using java, and package both the generator and the generated code to the plugin such that other ...
0
votes
1
answer
66
views
tested class didn't arrive
The following test is failing:
package io.github.magwas.inez.parse;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.util.Map;
import org.junit.jupiter.api.Tag;
import org....
0
votes
1
answer
71
views
undefined method error in eclipse in a project correctly building with maven
Eclipse gives me the following error:
The method delete(Sumti) is undefined for the type SumtiRepository DeleteBridiTest.java
The relevant parts of DeleteBridiTest.java:
public class DeleteBridiTest ...
0
votes
1
answer
55
views
internal dependency to a fragment in a multi-module project with tycho
I have a multi-module project. The modules are the following:
<modules>
<module>inez.target</module>
<module>inez.parser</module>
...
0
votes
0
answers
55
views
Could not resolve existing module in an Eclipse product
When I run my eclipse product, The first error (among many similar) is:
!ENTRY inez-parser 4 0 2025-08-17 10:04:02.509
!MESSAGE FrameworkEvent ERROR
!STACK 0
org.osgi.framework.BundleException: Could ...
0
votes
0
answers
49
views
tycho-compiler-plugin does not find test classes
I have an model module in my project, which follows parser in the pom.
Both have eclipse-plugin as packaging.
parser generates an artifact inez-parser-<version>-testing.jar, which is deployed to ...
1
vote
1
answer
55
views
No actual value was found for the argument "Application" when using dependency injection in Eclipse plugin
My Application class currently works as both the main application class and osgi bundle activator:
@Singleton
public class Application implements IApplication, BundleActivator {
public static ...
0
votes
0
answers
230
views
Unable to Add Weblogic Server in Eclipse For Weblogic 14.1.2 and JDK 21.0.7
My codebase is on JDK21.0.7. When I try to add Weblogic 14.0.2 server in Eclipse(Eclipse2025-03) along with JDK21.0.7 it doesn't allow me to go forward with the installation and keep's giving me the ...
0
votes
0
answers
71
views
How to install features in PDE Eclipse runtime?
I want to install some features in the PDE Eclipse runtime, but not in the Eclipse installation.
However, the features actually used by the PDE Eclipse runtime are those selected when starting the ...
1
vote
2
answers
50
views
Eclipse Acceleo-Tycho: How to build projects with dependent Modules
I am running my Tycho build and I am building Acceleo plugin projects. I have a few of these projects and in my templates (mtl) I am importing some modules/templates on other projects so I have those ...
0
votes
0
answers
67
views
What is the difference between these two bundle-related directories?
What is the difference between the following two areas for a bundle?
xxx/eclipse/workspace/.metadata/.plugins/<Bundle SymbolicName>
e.g. xxx/eclipse/workspace/.metadata/.plugins/org.eclipse....