Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
100 views

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 ...
kiruba T's user avatar
2 votes
0 answers
71 views

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'...
Sybuser's user avatar
  • 1,604
0 votes
0 answers
41 views

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 ...
Zaxxon's user avatar
  • 182
0 votes
0 answers
23 views

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. ...
Che's user avatar
  • 31
0 votes
0 answers
77 views

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 ...
Árpád Magosányi's user avatar
0 votes
1 answer
66 views

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....
Árpád Magosányi's user avatar
0 votes
1 answer
71 views

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 ...
Árpád Magosányi's user avatar
0 votes
1 answer
55 views

I have a multi-module project. The modules are the following: <modules> <module>inez.target</module> <module>inez.parser</module> ...
Árpád Magosányi's user avatar
0 votes
0 answers
52 views

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 ...
Árpád Magosányi's user avatar
0 votes
0 answers
48 views

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 ...
Árpád Magosányi's user avatar
1 vote
1 answer
55 views

My Application class currently works as both the main application class and osgi bundle activator: @Singleton public class Application implements IApplication, BundleActivator { public static ...
Árpád Magosányi's user avatar
0 votes
0 answers
227 views

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 ...
Learning Java's user avatar
0 votes
0 answers
71 views

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 ...
Bourbon_7's user avatar
  • 351
1 vote
2 answers
50 views

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 ...
Che's user avatar
  • 31
0 votes
0 answers
67 views

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....
Bourbon_7's user avatar
  • 351
0 votes
0 answers
45 views

I use a plugin_customization.ini file for preference customization in Eclipse rcp product. I added below preference in the file to set dark theme as default but it is not working. Can someone please ...
Praveen Balasubramaniam's user avatar
0 votes
1 answer
51 views

I'm using Eclipse 4.23, and I noticed something odd with how it handles changes to the eclipse.ini file: If I modify the .ini file while Eclipse is running, the changes are not applied even if I ...
Ritam Biswas's user avatar
0 votes
0 answers
26 views

We've developed a plugin that retrieves data from a third-party API and inserts it into the editor. We need to apply specific styling to the inserted content, which should persist until the user ...
user1862354's user avatar
0 votes
0 answers
143 views

I have Eclipse 2024-12 4.30 for Enterprise Java and Web Developers. I have installed the flowable plugin using http://www.flowable.org/designer/update/ In my project that I started by importing a ...
David -'s user avatar
  • 41
0 votes
0 answers
71 views

We have migrated our eclipse based application from eclipse 4.15 to eclipse 4.26, and while testing the application we found an UI difference in composite. We have able to see the slant line from ...
jeevan08's user avatar
0 votes
0 answers
77 views

I have a new context menu entry "Compare..." and the sub-menus are some tools configured in the preferences (for example "Beyond Compare") that is used to compare some custom files ...
Freelancer's user avatar
-1 votes
1 answer
82 views

The terms "extensions" and "plugins" are often used interchangeably. I get that both add additional functionality, but I don't understand the main difference between them. I read ...
gcs's user avatar
  • 1
0 votes
0 answers
53 views

Our team is doing some POC to migrate our plugin BUILD from ANT to Eclipse to Tycho. I was doing some research and was trying to figure out how to do incremental builds on the plugins. I came across ...
Che's user avatar
  • 31
0 votes
1 answer
66 views

The following always shows a blank / empty TextMergeViewer: public class SSCCE extends Dialog { protected SSCCE(Shell parentShell) { super(parentShell); } protected Control createDialogArea(...
Dave Carpeneto's user avatar
2 votes
0 answers
829 views

[I installed Svn via the Ecplise marketplace. When I go to Windows --> Prefereces-->Version Control (Team)--> Svn I get the following error Unable to create the selected preference page. org/...
Alessandro Borrelli's user avatar
0 votes
0 answers
51 views

I added the -debug flag and specified an .options file path in MyRCPApplication.ini. However, when I launch my RCP application, a command prompt window pops up before the application starts, but it ...
Chinna's user avatar
  • 164
1 vote
2 answers
212 views

We are using Eclipse 4.26. We are trying to launch the application with simpleConfigurator with it is giving : java.lang.RuntimeException: No application id has been found. at org.eclipse.equinox....
jeevan08's user avatar
0 votes
0 answers
29 views

How can I call Acceleo templates (present in .mtl file) defined in one project (Project B) from another project (Project A) within the same Eclipse workspace? Are there any specific settings or ...
user8593131's user avatar
0 votes
0 answers
37 views

Title: "Why is my Eclipse RCP PropertyTester not being invoked for enabling a command?" Summary: I am working on an Eclipse RCP application where I have defined a command with a handler and ...
mahesh bhagirath's user avatar
0 votes
0 answers
89 views

We have migrated from eclipse 4.15 to eclipse 4.26. Our dev-workspace is working fine. But our production build is not getting launched. I am using below config.ini file osgi.bundles=org.eclipse....
jeevan08's user avatar
1 vote
0 answers
79 views

We have migrating from eclipse RCP 4.15 to 4.26. We have created target paltform from referring to p2 repository. (https://download.eclipse.org/eclipse/updates/4.26/R-4.26-202211231800/) Our Dev-...
jeevan08's user avatar
3 votes
2 answers
4k views

I have upgraded eclipse from 2024-09 to 2024-12 with Subversive SVN Connectors 6.0.4.I20161211-1700 and Subversive SVN Team Provider 4.8.0.v20220904-1901; after upgrade I'm facing Many GUI errors..., ...
ziad-saade's user avatar
0 votes
1 answer
51 views

https://angelozerr.wordpress.com/2012/01/06/nebula_pagination/ I am trying to emulate my 'PaginationService' as it would need to go to the server to get the data page at a time, which could take a ...
jemrug's user avatar
  • 89
1 vote
1 answer
72 views

I need guidance on developing an Eclipse plugin project, as I am unsure how and where to begin. If you know of any articles or resources that can help with Eclipse plugin development, please share ...
Leander Kervin's user avatar
1 vote
1 answer
290 views

I'm experiencing an issue with Spring Tools 4 in Eclipse where the language server fails to load correctly when switching workspaces. The specific error is: Error: Unable to access jarfile C:\Program ...
Abel Mathew's user avatar
0 votes
0 answers
105 views

I am developing a desktop application based on Eclipse Kepler plugins. Initially, I used Kepler 4.3.2 (2014) with JDK 1.8.0_231. Later, I use Kepler 4.33 (2024)and JDK 17. During this upgrade, I ...
hoangsang 01's user avatar
0 votes
0 answers
50 views

We have an Eclipse RCP based application that uses Eclipse 3.6 plug-ins and Java 1.8. I have a need to implement a login session timeout for the application. I am not too familiar with RCP. I googled ...
user2125853's user avatar
  • 1,345
0 votes
1 answer
116 views

I am trying upgrade eclipse 4.23 to eclipse 4.31. while doing this I am facing this issue. I am using slf4j and logback version, ch.qos.logback.classic_1.5.0.jar ch.qos.logback.core_1.5.0.jar slf4j....
Birudeo Garande's user avatar
0 votes
0 answers
142 views

I am trying to install software in Eclipse IDE using the "Install New Software" feature. I have an update site with the following URL: http://abc.go.net:8000/tool This URL works fine when ...
mahesh bhagirath's user avatar
0 votes
0 answers
21 views

I have a plugin for Eclipse InfoCenter with the following structure: com.av.help.mega --css --html -----description.html --images -----scheme1-7-1.svg --META-INF --build.properties --plugin.xml --toc....
Alien's user avatar
  • 3
0 votes
1 answer
70 views

When I have this kind of Java code: @Test void testExplainJavaS1130_WithAnonymousInstanceInitilizer() throws Exception { var something = new IllegalStateException() { private static final ...
gkephorus's user avatar
  • 1,416
0 votes
0 answers
53 views

I'm in the process of upgrading a large project from Java 17 to Java 21, and I've been changing everything to build via Maven, but now my Eclipse workbench has all kinds of problems. Specifically, ...
ahmed homrani's user avatar
0 votes
0 answers
59 views

I want to host Eclipse Help on a server. I found a discussion on the Eclipse forum about creating help on a server. (I am very grateful to the person on the forum who described everything in detail) ...
Alien's user avatar
  • 3
0 votes
1 answer
38 views

I am creating an RCP application with the help plugin enabled. I added the code to run the help in the ApplicationWorkbenchAdvisor class, but I got the following error: Description Resource Path ...
Alien's user avatar
  • 3
0 votes
0 answers
56 views

I have an RCP application that I have attached my help plugin to. Help opens when I click Open Help, then a new window opens with the help. Is there a way to make my help plugin open in a browser ...
Alien's user avatar
  • 3
0 votes
0 answers
140 views

when I build maven project as a eclipse-plugin then getting issue but with jar packaging its working fine. issue I get when packaging is eclipse-plugin import javax.smartcardio.CardTerminals; [ERROR] [...
Birudeo Garande's user avatar
0 votes
0 answers
48 views

I have customized a plugin that contains a Button. How can I replace org.aclipse.swt.control.Button ? example plugin xxx.xxx.xxx package xxx.xxx.xxx public class Button extends Canvas { } I think ...
user26387169's user avatar
0 votes
0 answers
47 views

For debugging purposes, I need to start the Tomcat server with a custom script; however, the Eclipse IDE plugin prevents my start script from starting the Tomcat server. Please advise me on how to I ...
dinu0101's user avatar
  • 499
1 vote
1 answer
79 views

I have a third-party library which uses weld, specifically weld-se-2.4.5. I want to make use of this library inside a plugin for a different third-party application that's using the eclipse plugin ...
Steven Irrgang's user avatar
1 vote
0 answers
59 views

Apparently Eclipse violates OSGI specification and does not deactivate singleton Components when all no ServiceReferences to it are left. This happens due to an automatically set framework property ds....
Basilevs's user avatar
  • 24.6k

1
2 3 4 5
233