Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [pde-build-dev] RCP application's plugins' JAR does not contain.class files

Further investigation of the issue have found that export of binaries for plugin needs the following steps :
 
 - open plugin.xml in manifest editor and go to build tab and under binary build check the box "bin" to export the classes of the plugin to build binary, which should be sufficient for .class files and other files (if needed) to be available to the plugin binary. But this is not the case. Even if I check the check box "bin" under binary build, plugin's build binary does not contain .class files.
 
Which means check or uncheck the "bin" under Binary build does not affect the result of build binary.
 
My plugins' build.properties had the following contents and "bin" was checked under Binary Build, which did not let the .class files be available to the plugins' build binary :
 
source..=src/
output../bin
bin.includes=META-INF/,\
about.html,\
about.ini,\
about.properites,\
log4j.properties,\
plugin.properties,\
readme.html,\
splash.bmp,\
bin/
 
 
I changed the above manually in build.properties to :
 
source..=src/
output../bin
bin.includes=META-INF/,\
.,\
about.html,\
about.ini,\
about.properites,\
log4j.properties,\
plugin.properties,\
readme.html,\
splash.bmp,\
bin/
 
 
And all class files in the plugins' build binary was available.
 
This seems to be a bug! If fact build.properties should be updated automatically as per the action taken by user for export etc. I am not sure if some one else also faced this behaviour! 
 

From: pde-build-dev-bounces@xxxxxxxxxxx [mailto:pde-build-dev-bounces@xxxxxxxxxxx] On Behalf Of Sharma, Jaikumar
Sent: Sunday, September 02, 2007 2:19 PM
To: pde-build-dev@xxxxxxxxxxx
Subject: [pde-build-dev] RCP application's plugins' JAR does not contain.class files

Hi All,
 
I have seen stragne behaviour while building RCP application from product configuration file with Eclipse 3.3. When I check the contents of JARs plugins packaged in final build archive, I do not find .class files of the plugin in the JARs instead only META-INF and plugin.xml are there, neither it gives any error.
 
Same RCP application build works fine with Eclipse 3.2. 
 
Does somebody know what may be the probelm ? Or somebody has already faced this behaviour already ?
 
Thanks for any pointers!
 
Regards.
 
 
 
 

DISCLAIMER:
Unless indicated otherwise, the information contained in this message is privileged and confidential, and is intended only for the use of the addressee(s) named above and others who have been specifically authorized to receive it. If you are not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this message and/or attachments is strictly prohibited. The company accepts no liability for any damage caused by any virus transmitted by this email. Furthermore, the company does not warrant a proper and complete transmission of this information, nor does it accept liability for any delays. If you have received this message in error, please contact the sender and delete the message. Thank you.

DISCLAIMER:
Unless indicated otherwise, the information contained in this message is privileged and confidential, and is intended only for the use of the addressee(s) named above and others who have been specifically authorized to receive it. If you are not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this message and/or attachments is strictly prohibited. The company accepts no liability for any damage caused by any virus transmitted by this email. Furthermore, the company does not warrant a proper and complete transmission of this information, nor does it accept liability for any delays. If you have received this message in error, please contact the sender and delete the message. Thank you.


Back to the top