[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.newcomer] Re: The selected wizard could not be started

Sole,

Well, looking at all the jars you include in your "plugin" strikes me that you've not properly built a plugin that will run in Eclipse because it's just not right to include jars that will be in the platform. I think you need to read more of the documentation about how to build a plugin that depends on other plugins. I.e., you should be depending on the SWT plugin, not including the jar locally...


sole wrote:
Hi! I didn`t solve my problem yet..I tried with output.. = bin/ but it doesn't work... I'm working without an Activator.. maybe there is the problem...

Here goes the build.properties

src.includes = source/,\
              plugin.xml,\
              icons/,\
              build.properties,\
              .project,\
              .classpath
output.. = bin/
bin.includes = plugin.xml,\
              .,\
              lib/commons-collections-3.1.jar,\
              lib/commons-io-1.1.jar,\
              lib/commons-logging-1.0.3.jar,\
              lib/jlfgr-1_0.jar,\
              lib/log4j-1.2.8.jar,\
              lib/velocity-1.4.jar,\
              lib/xstream-1.1.2.jar,\
              lib/xstream-1.1.2-java5.jar,\
              lib/org.eclipse.swt.win32.win32.x86_3.2.1.v3235.jar,\
              lib/org.eclipse.ui.forms_3.1.0.jar,\
              META-INF/,\
              bin/
jars.compile.order = .


Thanks, Sole.