I have added slf4j 1.6.1, logback-core-0.9.24.jar, and logback-classic-0.9.24.jar to my target platform and added them as a dependency in the MANIFEST file in a plug-in project.
In the Activator I do:
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFac...
I have created an eclipse PDE project and have added log4j as a dependency using the slf4j-api and slf4j.log4j12 bundles. In a class I have created the logger:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class MyTest {
private static final Logger logger = LoggerFactory.getLogger(MyTest.class
.getName());
...
I have a Eclipse PDE build that creates a product. So far so good, I can create and run my product with the Headless PDE installer.
I want to further use my build product as a "Target-Platform" to develop add-ons on it. However, the problem I have is that this build does not contain the source code internally.
My question is, how can...
Hi there,
I am trying to avoid duplicating customBuildCallbacks.xml for all my plug-ins, when called from either PDE's headless build or the Eclipse GUI. I have in customBuildCallbacks.xml steps to generate code or modify the plug-in packaging that I:
obviously want to run with the headless build
would also like to run either when I ...
I would like to modify an already existing wizard in eclipse. My plan is to copy the existing wizard plugin to a new plugin an make the changes there. But how do I enable this modified wizard in eclipse?
I know how to create a local P2 update site but how do I make sure that the original wizard is replaced with the updated version?
...
Hello,
I'm building my Eclipse plugin by means of Eclipse PDE build, i e I've defined all the required targets in "custom.xml"
But I do not want to fetch my plugins from a repository, so I'm skipping this step. However, all plugins have to be located under plugins directory, and all the features have to be located under features folder...