Skip to main content



      Home
Home » Eclipse Projects » Rich Client Platform (RCP) » product export is not working
product export is not working [message #462447] Mon, 29 January 2007 11:45 Go to next message
Eclipse UserFriend
------=_Part_53_28445203.1170089149435
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Hi, i have the following problem: i have an rcp-application which consists of about 12 plugins, bundled into features. My programm works fine as long as i start it within the eclipse-ide. When i export it via the product export wizzard, i get the following error message:

1. ERROR in D:\Java_Dev\de.gebitms.geplan.core\src\de\gebitms\geplan\cor e\Application.java (at line 0)
package de.gebitms.geplan.core;
^
The type org.eclipse.swt.widgets.Display cannot be resolved. It is indirectly referenced from required .class files

I get this and similiar errors in three of the 12 plugins, all of them are related to swt-classes. I have set the swt-plugins as a dependency of those three plugins. The funny thing is, that when i create an ant build-file from the plugin.xml and set "custom build" to true there everything works fine.

Oh yeah, one more thing that distinguish the three not working plugins from the others is that those are the only ones with extensions.

Does anybody has an idea what could be wrong here?

I attach the files plugin.xml and the manifest.mf of one of the three plugins for your reference.

Thanks very much for any help
Christoph
------=_Part_53_28445203.1170089149435
Content-Type: application/octet-stream; name=manifest.mf
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=manifest.mf

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Geplan Util Plug-in
Bundle-SymbolicName: de.gebitms.geplan.util;singleton:=true
Bundle-Version: 1.0.0
Bundle-Vendor: GEBIT
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: de.gebitms.geplan.crypto,
de.gebitms.geplan.help;visibility:=reexport,
org.eclipse.ui;visibility:=reexport,
org.eclipse.pde.runtime;visibility:=reexport,
org.eclipse.core.runtime;visibility:=reexport
Bundle-Activator: de.gebitms.geplan.util.UtilPlugin
Eclipse-LazyStart: true
Export-Package: de.gebitms.geplan.util,
de.gebitms.geplan.util.exceptions,
de.gebitms.geplan.util.observers,
de.gebitms.geplan.util.utils
Bundle-ClassPath: .

------=_Part_53_28445203.1170089149435
Content-Type: application/octet-stream; name=plugin.xml
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=plugin.xml

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>

</plugin>

------=_Part_53_28445203.1170089149435--
Re: product export is not working [message #462453 is a reply to message #462447] Mon, 29 January 2007 12:39 Go to previous messageGo to next message
Eclipse UserFriend
There isn't the dependency to org.eclipse.swt in your MANIFEST.MF .
I suppose that you have added this dependency to the build path, but you
haven't added it to the plugin's manifest file.

Snjeza

Christoph wrote:
> Hi, i have the following problem: i have an rcp-application which consists of about 12 plugins, bundled into features. My programm works fine as long as i start it within the eclipse-ide. When i export it via the product export wizzard, i get the following error message:
>
> 1. ERROR in D:\Java_Dev\de.gebitms.geplan.core\src\de\gebitms\geplan\cor e\Application.java (at line 0)
> package de.gebitms.geplan.core;
> ^
> The type org.eclipse.swt.widgets.Display cannot be resolved. It is indirectly referenced from required .class files
>
> I get this and similiar errors in three of the 12 plugins, all of them are related to swt-classes. I have set the swt-plugins as a dependency of those three plugins. The funny thing is, that when i create an ant build-file from the plugin.xml and set "custom build" to true there everything works fine.
>
> Oh yeah, one more thing that distinguish the three not working plugins from the others is that those are the only ones with extensions.
>
> Does anybody has an idea what could be wrong here?
>
> I attach the files plugin.xml and the manifest.mf of one of the three plugins for your reference.
>
> Thanks very much for any help
> Christoph
Re: product export is not working [message #462455 is a reply to message #462447] Mon, 29 January 2007 13:00 Go to previous messageGo to next message
Eclipse UserFriend
You almost certainly need to have org.eclipse.swt on your dependencies in the Manifest's require-bundle, which you don't have at the moment.

Alex.
Re: product export is not working [message #462531 is a reply to message #462447] Tue, 30 January 2007 01:57 Go to previous messageGo to next message
Eclipse UserFriend
Ahh sorry, i forgot to mention that this plugin indirectly depends on
org.eclipse.swt. One of my other plugins this plugin depends on, depends
on SWT and reexport this dependency. I also tried to let this plugin
depend directly on swt, but the probelm remained.
Any more ideas?
Re: product export is not working [message #462539 is a reply to message #462531] Tue, 30 January 2007 07:28 Go to previous messageGo to next message
Eclipse UserFriend
I had the exact problem recently. I cleared all data from the eclipse
configuration dirctory except config.ini and restarted eclipse. Then I
used the update classpath under PDE off the explorer menu and it fixed
the problem. I am using 3.2.1.
Re: product export is not working [message #462629 is a reply to message #462539] Wed, 31 January 2007 02:55 Go to previous messageGo to next message
Eclipse UserFriend
thanks for your answer. Unfortunately your soulution didn´t work for me. I have found another solution. I directly imported the swt.jar into my plugin and put it on the classpath. This my be a little bit awkward, but it fixes the problem.
Re: product export is not working [message #462631 is a reply to message #462629] Wed, 31 January 2007 04:01 Go to previous messageGo to next message
Eclipse UserFriend
That's a really, really bad idea. You could end up with different versions of SWT on the build/runtime path, and that will totally screw up whatever plugin that's used in.

I suspect that the problem comes from the reexport:=true that you've got in your manifests. Generally you don't have that in most cases, and it could be that the JFace isn't reexporting the org.eclipse.swt dependency.

In any case, I'd recommend getting rid of all the reexport:=true, and then using PDE's Update Classpath or the manifest's automatic management of dependencies to fix the problem.

Alex.
Re: product export is not working [message #462635 is a reply to message #462631] Wed, 31 January 2007 04:18 Go to previous messageGo to next message
Eclipse UserFriend
Thanks Alex,
i will look into this. I´m trying to fix this for weeks now and can´t figure out what the problem is. I´m pretty sure that i have allready tried to let every plugin depend on every swt-related plugin directly which didn´t help. But i will try it again. :-(
Thanks for your help
Christoph
Re: product export is not working [message #462641 is a reply to message #462635] Wed, 31 January 2007 05:36 Go to previous messageGo to next message
Eclipse UserFriend
Hi Alex,
i have tried what you have proposed. I deleted all the reexports from my plugins dependencies, then a added dependencies to or.eclipse.swt, org.eclipse.jface and org.eclipse.core.runtime where it was needed. I used the function "PDE-Tools - Update Classpath" for all plugins and i cleaned every manifest-file with "PDE-Tools - Organize Manifest ...".

My programm still works fine within eclipse, but when i try to export the product, i get those awfull error messages again. :-(

I have tried to dig yet a little bit deeper into this and here is what i have found out: There is one feature in my application that consists of 5 plugins. When i export these plugins individually i don´t get an error, they are compiled correctly. BUT when i try to export the feature i get these errors. The same with the product.

I really don´t understand this. Can you help? I attach the manifest files of one of the plugins, of the feature and the log-file with the error-messages. It would be great if you or anybody else can take a look into this and tell me what´s going on here. Thanks very much.
Christoph
Re: product export is not working [message #462643 is a reply to message #462447] Wed, 31 January 2007 05:37 Go to previous messageGo to next message
Eclipse UserFriend
------=_Part_556_30813025.1170239937464
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

my attachments where somehow not accepted, so i try it again
------=_Part_556_30813025.1170239937464
Content-Type: application/octet-stream; name=plugin.xml
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=plugin.xml

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>

</plugin>

------=_Part_556_30813025.1170239937464
Content-Type: application/octet-stream; name=manifest.mf
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=manifest.mf

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Geplan Util Plug-in
Bundle-SymbolicName: de.gebitms.geplan.util;singleton:=true
Bundle-Version: 1.0.0
Bundle-Vendor: GEBIT
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ui,
de.gebitms.geplan.crypto
Bundle-Activator: de.gebitms.geplan.util.UtilPlugin
Eclipse-LazyStart: true
Export-Package: de.gebitms.geplan.util,
de.gebitms.geplan.util.exceptions,
de.gebitms.geplan.util.observers,
de.gebitms.geplan.util.utils
Bundle-ClassPath: .

------=_Part_556_30813025.1170239937464
Content-Type: application/octet-stream; name=feature.xml
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=feature.xml

<?xml version="1.0" encoding="UTF-8"?>
<feature
id="de.gebitms.geplan.core"
label="Feature GePlan_Core"
version="1.0.0"
provider-name="GEBIT"
os="linux,win32"
ws="gtk,photon,win32"
nl="de_AT,de_CH,de_DE,de_LU,de"
arch="ia64,ia64_32,PA_RISC,ppc,sparc,x86,x86_64">

<description>
%geplan.feature.description
</description>

<copyright>
%geplan.feature.copyright
</copyright>

<license>
%geplan.feature.licence
</license>

<url>
<update label="GePlan Update Site" url="http://www.gebit-ms.de/geplan_update"/>
<discovery label="GePlan Update-Site" url="http://www.gebit-ms.de"/>
</url>

<requires>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="de.gebitms.geplan.services"/>
<import plugin="org.eclipse.update.ui"/>
</requires>

<plugin
id="de.gebitms.geplan.core"
os="linux,win32"
ws="gtk,photon,win32"
nl="de_AT,de_CH,de_DE,de_LU,de"
arch="ia64,ia64_32,PA_RISC,ppc,sparc,x86,x86_64"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="de.gebitms.geplan.ui"
os="linux,win32"
ws="gtk,photon,win32"
nl="de_AT,de_CH,de_DE,de_LU,de"
arch="ia64,ia64_32,PA_RISC,ppc,sparc,x86,x86_64"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="de.gebitms.geplan.util"
os="linux,win32"
ws="gtk,photon,win32"
nl="de_AT,de_CH,de_DE,de_LU,de"
arch="ia64,ia64_32,PA_RISC,ppc,sparc,x86,x86_64"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="de.gebitms.geplan.global"
os="linux,win32"
ws="gtk,photon,win32"
nl="de_AT,de_CH,de_DE,de_LU,de"
arch="ia64,ia64_32,PA_RISC,ppc,sparc,x86,x86_64"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

<plugin
id="de.gebitms.geplan.crypto"
os="linux,win32"
ws="gtk,photon,win32"
nl="de_AT,de_CH,de_DE,de_LU,de"
arch="ia64,ia64_32,PA_RISC,ppc,sparc,x86,x86_64"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>

</feature>

------=_Part_556_30813025.1170239937464
Content-Type: application/octet-stream; name=logs.zip
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename=logs.zip

UEsDBAoAAAAAADdbPzYAAAAAAAAAAAAAAAAdAAAAZGUuZ2ViaXRtcy5nZXBs YW4uY29yZV8xLjAu
MC9QSwMECgAAAAAAN1s/NgAAAAAAAAAAAAAAAB8AAABkZS5nZWJpdG1zLmdl cGxhbi5nbG9iYWxf
MS4wLjAvUEsDBAoAAAAAADdbPzYAAAAAAAAAAAAAAAAbAAAAZGUuZ2ViaXRt cy5nZXBsYW4udWlf
MS4wLjAvUEsDBAoAAAAAADdbPzYAAAAAAAAAAAAAAAAdAAAAZGUuZ2ViaXRt cy5nZXBsYW4udXRp
bF8xLjAuMC9QSwMECgAAAAgAN1s/NrsvLUsqAQAArwEAACkAAABkZS5nZWJp dG1zLmdlcGxhbi5j
b3JlXzEuMC4wL0Bkb3QuYmluLmxvZ22QT0sDMRDFzy7sd3jQSws17B9ssZ5q 20MFEZYeF0uanW6j
2U1M4tb99mZb8SCGIWH4zUzmvRHylCUh5kjTRXa3yO+x2uziaISNUNI4whPv OFa6MVKRRbefzef7
Is++pshZxlJYUsQdTUON6a2sTx7bx+eQWYMsSZLpcM8Ylkrhgl1ocWQ7qlgc 3f6eOEoZNkXxUkC2
WC/K4eP9mrqyIlbTQfrGhdco3jKhLZXOioDKH1ReUXlBS2OUFNxL3bK3Yf8x 91CyJSSTOLoxXLzz
mvD/4IdQ8RpHuxPB94agbc3oagZzZ8/OsqrJO7aWLvT0ELxttceBBl1aDbqw 9ZAu6KikJeFVH9CR
LLWCKhytbkL+8RlYBSYUdw7H4K77YweM1QdFDcYpyFptJ99QSwMECgAAAAgA N1s/Nifyk1V3AAAA
gQAAACsAAABkZS5nZWJpdG1zLmdlcGxhbi5nbG9iYWxfMS4wLjAvQGRvdC5i aW4ubG9nHYvLCsIw
FET3hf7DQLch5IENdKelCwU34r4EvWjgiuFGgv69URgGDnNmgLfatARYO7nN 5APm5dx3A5YLp1wI
h1gj5ucjJyZBXccQ1pN3bwWvnbYQYoqFVHPyR9Lt/sJ+d2wkGc4Yo349amyZ 8Z9LuxSSSlfdd19Q
SwMECgAAAAgAN1s/Nn73Fd1MAQAAFgIAACcAAABkZS5nZWJpdG1zLmdlcGxh bi51aV8xLjAuMC9A
ZG90LmJpbi5sb2eNUdFqwjAUfV6h/3DAF4Uu2Jbp8G1THxwOQdxbmaTttWak aZbEOtnPL53Oh+1l
h5Bw78nNveekhzRmQ7/GiONJcjdJ7zGdb8Kgh3khhbaEJ95yTJtaC0kG7XY0 Hm/XafIRIWUJi2FI
ErcU+Tv6ZES1d1g8PvvIaCTD4TDq9hHDg5T4pq0vsWRaKlkY3F4RBjHDfL1e rSEUZpOsa7ydUZuV
xCrKhautP7Xkih1EZk3hiexCZGci84QU1pEiY7MX32W656qi5SXH3joxfe4g hSIk6SAMbvQhl6JA
Ibm1+FsDUWtJNSk/+E8uwrKphFrlnQ6eS/r07+D/eL0gDDZ7gjtpQmMqRmfL mT06dhRlRc6y6xgF
V6pxyKmzr5GdfVg4COvtKoWhwsmTp3ZkSBVUYmea2sfvB8+VYGd5O/+J9pfr 0KbxEmr0Y5AxjRl8
AVBLAwQKAAAACAA3Wz82yZzdjW4BAAC7AwAAKQAAAGRlLmdlYml0bXMuZ2Vw bGFuLnV0aWxfMS4w
LjAvQGRvdC5iaW4ubG9nvZDbSgMxEIavXdh3GPBGoYY9YAv1SmsVBRFqwZvF kman22h2E2fSat/e
bCuC1tNVhzAh+XPg+/YhT0USRg/StJ8d9/MeDIbjONqHoTLaMcK1XEoY2Npp gwTLSbfXm4zy7LUD
uchECoQGJWMnnHEr0tXcw9XZTViRgyxJkk7buwJOjYF1zOEKIy2xFHF09FFx lAoYjka3I9ANnPeL
9uPJOS6LEkWFU+1rDrMzshELr03BpEJUvEfFJirWUdu4uFzvXCwa5bVtWDy2 JAfSg9ENQnIYR3tO
qidZIXz/xbrxSTj3EEfjOYJfOQRLlcCNHMEvXrzoskLP4m6OAVHJprEepthS WtNSwpUHzYGq1ITK
m1WIZkjYKCxhRrYO6+dFyEoQykhmmAXX/FlOtlM5x60cXTtLfov37n7cKoFN PWzXxtXPt79x9Jk1
3ylr9xfWiqSba8VisCC29Dv3vx18efVvH+DITg3WDAc5IJElPnwDUEsBAhQD CgAAAAAAN1s/NgAA
AAAAAAAAAAAAAB0AAAAAAAAAAAAQAO1BAAAAAGRlLmdlYml0bXMuZ2VwbGFu LmNvcmVfMS4wLjAv
UEsBAhQDCgAAAAAAN1s/NgAAAAAAAAAAAAAAAB8AAAAAAAAAAAAQAO1BOwAA AGRlLmdlYml0bXMu
Z2VwbGFuLmdsb2JhbF8xLjAuMC9QSwECFAMKAAAAAAA3Wz82AAAAAAAAAAAA AAAAGwAAAAAAAAAA
ABAA7UF4AAAAZGUuZ2ViaXRtcy5nZXBsYW4udWlfMS4wLjAvUEsBAhQDCgAA AAAAN1s/NgAAAAAA
AAAAAAAAAB0AAAAAAAAAAAAQAO1BsQAAAGRlLmdlYml0bXMuZ2VwbGFuLnV0 aWxfMS4wLjAvUEsB
AhQDCgAAAAgAN1s/NrsvLUsqAQAArwEAACkAAAAAAAAAAAAAAKSB7AAAAGRl LmdlYml0bXMuZ2Vw
bGFuLmNvcmVfMS4wLjAvQGRvdC5iaW4ubG9nUEsBAhQDCgAAAAgAN1s/Nify k1V3AAAAgQAAACsA
AAAAAAAAAAAAAKSBXQIAAGRlLmdlYml0bXMuZ2VwbGFuLmdsb2JhbF8xLjAu MC9AZG90LmJpbi5s
b2dQSwECFAMKAAAACAA3Wz82fvcV3UwBAAAWAgAAJwAAAAAAAAAAAAAApIEd AwAAZGUuZ2ViaXRt
cy5nZXBsYW4udWlfMS4wLjAvQGRvdC5iaW4ubG9nUEsBAhQDCgAAAAgAN1s/ Nsmc3Y1uAQAAuwMA
ACkAAAAAAAAAAAAAAKSBrgQAAGRlLmdlYml0bXMuZ2VwbGFuLnV0aWxfMS4w LjAvQGRvdC5iaW4u
bG9nUEsFBgAAAAAIAAgAiAIAAGMGAAAAAA==
------=_Part_556_30813025.1170239937464--
Re: product export is not working [message #462647 is a reply to message #462643] Wed, 31 January 2007 05:54 Go to previous messageGo to next message
Eclipse UserFriend
Your feature doesn't import org.eclipse.swt, which is likely the problem. You'll either need to list everything in your feature that your final product will need, or you'll need to depend on the RCP feature (which will cover all the base packages). That's probably why it's not working; it's not setting up the SWT on the build path during the build session.

Alex.
Re: product export is not working [message #462680 is a reply to message #462647] Wed, 31 January 2007 10:16 Go to previous messageGo to next message
Eclipse UserFriend
Hi Alex,
after 2 more hours of work i think i finally have it. I found out what the problem was and unless you will tell me again, that my solution is stupid, i´m a happy man, because everything works now. :-)

The problem was (in the end) fairly simple. In my feature i had set the environment-combinations for the plugins to run in to win32 AND Linux. Of course SWT is platform-dependent, and so it seems that he was missing some Linux-SWT-Classes during compilation.

I know that i could have come up with this much earlier, but i was confused by the description in the feature.xml-editor which says:

"Specify environment combinations in which the selected plug-in can be installed. Leave blank if the plug-in does not contain platform-specific code."

I thought i had to set this because swt is platform-dependet. Than i forgot about it and within Edlipse everything worked fine. Only when i began to export the product, i started to get problems which i (for a long time) couldn´t connect to this settings. :-(

Anyway, i have learned one more thing and it works now. Thanks very much for your support.
Christoph
Re: product export is not working [message #462681 is a reply to message #462647] Wed, 31 January 2007 10:18 Go to previous messageGo to next message
Eclipse UserFriend
Hi Alex,
after 2 more hours of work i think i finally have it. I found out what the problem was and unless you will tell me again, that my solution is stupid, i´m a happy man, because everything works now. :-)

The problem was (in the end) fairly simple. In my feature i had set the environment-combinations for the plugins to run in to win32 AND Linux. Of course SWT is platform-dependent, and so it seems that he was missing some Linux-SWT-Classes during compilation.

I know that i could have come up with this much earlier, but i was confused by the description in the feature.xml-editor which says:

"Specify environment combinations in which the selected plug-in can be installed. Leave blank if the plug-in does not contain platform-specific code."

I thought i had to set this because swt is platform-dependet. Than i forgot about it and within Edlipse everything worked fine. Only when i began to export the product, i started to get problems which i (for a long time) couldn´t connect to this settings. :-(

Anyway, i have learned one more thing and it works now. Thanks very much for your support.
Christoph
Re: product export is not working [message #462682 is a reply to message #462647] Wed, 31 January 2007 10:17 Go to previous messageGo to next message
Eclipse UserFriend
Hi Alex,
after 2 more hours of work i think i finally have it. I found out what the problem was and unless you will tell me again, that my solution is stupid, i´m a happy man, because everything works now. :-)

The problem was (in the end) fairly simple. In my feature i had set the environment-combinations for the plugins to run in to win32 AND Linux. Of course SWT is platform-dependent, and so it seems that he was missing some Linux-SWT-Classes during compilation.

I know that i could have come up with this much earlier, but i was confused by the description in the feature.xml-editor which says:

"Specify environment combinations in which the selected plug-in can be installed. Leave blank if the plug-in does not contain platform-specific code."

I thought i had to set this because swt is platform-dependet. Than i forgot about it and within Edlipse everything worked fine. Only when i began to export the product, i started to get problems which i (for a long time) couldn´t connect to this settings. :-(

Anyway, i have learned one more thing and it works now. Thanks very much for your support.
Christoph
Re: product export is not working [message #462688 is a reply to message #462681] Wed, 31 January 2007 12:59 Go to previous messageGo to next message
Eclipse UserFriend
------=_Part_0_1370476.1170266499221
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Yeah, that's basically what the RCP feature does. If you had set up your feature to depend on the RCP feature, then it would have Just Worked :-)

Instead, you've ended up having to replicate pretty much what's in the RCP feature.xml (see attached).

Also, note that org.eclipse.swt is a placeholder; the actual code is in org.eclipse.swt.macosx etc. and is attached as a fragment when the bundle starts (based on the os/ws combination). So the org.eclipse.swt plugin doesn't really contain much on its own, and needs to be combined with the platform fragments.

Alex.
------=_Part_0_1370476.1170266499221
Content-Type: application/octet-stream; name=feature.xml
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=feature.xml

<?xml version="1.0" encoding="UTF-8"?>
<feature
id="org.eclipse.rcp"
label="%featureName"
version="3.2.1.r321_v20060801-2ekW2BxmcpPUOoq"
provider-name="%providerName"
plugin="org.eclipse.rcp"
image="eclipse_update_120.jpg">

<description>
%description
</description>

<copyright>
%copyright
</copyright>

<license url="%licenseURL">
%license
</license>

<url>
<update label="%updateSiteName" url="http://update.eclipse.org/updates/3.2"/>
</url>

<plugin
id="com.ibm.icu"
download-size="0"
install-size="0"
version="3.4.5"
unpack="false"/>

<plugin
id="org.eclipse.core.commands"
download-size="0"
install-size="0"
version="3.2.0.I20060605-1400"
unpack="false"/>

<plugin
id="org.eclipse.core.jobs"
download-size="0"
install-size="0"
version="3.2.0.v20060603"
unpack="false"/>

<plugin
id="org.eclipse.core.expressions"
download-size="0"
install-size="0"
version="3.2.1.r321_v20060721"
unpack="false"/>

<plugin
id="org.eclipse.core.runtime"
download-size="0"
install-size="0"
version="3.2.0.v20060603"
unpack="false"/>

<plugin
id="org.eclipse.core.runtime.compatibility.auth"
download-size="0"
install-size="0"
version="3.2.0.v20060601"
unpack="false"/>

<plugin
id="org.eclipse.osgi"
download-size="0"
install-size="0"
version="3.2.1.R32x_v20060919"
unpack="false"/>

<plugin
id="org.eclipse.help"
download-size="0"
install-size="0"
version="3.2.1.R321_v20060920"
unpack="false"/>

<plugin
id="org.eclipse.swt"
download-size="0"
install-size="0"
version="3.2.1.v3235e"
unpack="false"/>

<plugin
id="org.eclipse.jface"
download-size="0"
install-size="0"
version="3.2.1.M20060908-1000"
unpack="false"/>

<plugin
id="org.eclipse.jface.databinding"
download-size="0"
install-size="0"
version="1.0.0.I20060605-1400"
unpack="false"/>

<plugin
id="org.eclipse.ui"
download-size="0"
install-size="0"
version="3.2.1.M20060913-0800"
unpack="false"/>

<plugin
id="org.eclipse.ui.workbench"
download-size="0"
install-size="0"
version="3.2.1.M20060906-0800"
unpack="false"/>

<plugin
id="org.eclipse.update.configurator"
download-size="0"
install-size="0"
version="3.2.1.v20092006"
unpack="false"/>

<plugin
id="org.eclipse.swt.win32.win32.x86"
os="win32"
ws="win32"
arch="x86"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.gtk.linux.x86"
os="linux"
ws="gtk"
arch="x86"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.gtk.solaris.sparc"
os="solaris"
ws="gtk"
arch="sparc"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.gtk.solaris.x86"
os="solaris"
ws="gtk"
arch="x86"
download-size="0"
install-size="0"
version="3.2.0.R3_2_maintenance"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.gtk.linux.ppc"
os="linux"
ws="gtk"
arch="ppc"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.gtk.linux.x86_64"
os="linux"
ws="gtk"
arch="x86_64"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.carbon.macosx"
os="macosx"
ws="carbon"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.motif.aix.ppc"
os="aix"
ws="motif"
arch="ppc"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.motif.hpux.PA_RISC"
os="hpux"
ws="motif"
arch="PA_RISC"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.motif.linux.x86"
os="linux"
ws="motif"
arch="x86"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.gtk.linux.ia64"
os="linux"
ws="gtk"
arch="ia64"
download-size="0"
install-size="0"
version="3.2.0.R3_2_maintenance"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.motif.solaris.sparc"
os="solaris"
ws="motif"
arch="sparc"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.photon.qnx.x86"
os="qnx"
ws="photon"
arch="x86"
download-size="0"
install-size="0"
version="3.2.1.v3235"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.swt.motif.hpux.ia64_32"
os="hpux"
ws="motif"
arch="ia64_32"
download-size="0"
install-size="0"
version="3.2.1"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.rcp"
download-size="0"
install-size="0"
version="3.2.0.v20060605"
unpack="false"/>

<plugin
id="org.eclipse.core.contenttype"
download-size="0"
install-size="0"
version="3.2.0.v20060603"
unpack="false"/>

<plugin
id="org.eclipse.equinox.common"
download-size="0"
install-size="0"
version="3.2.0.v20060603"
unpack="false"/>

<plugin
id="org.eclipse.equinox.preferences"
download-size="0"
install-size="0"
version="3.2.1.R32x_v20060717"
unpack="false"/>

<plugin
id="org.eclipse.equinox.registry"
download-size="0"
install-size="0"
version="3.2.1.R32x_v20060814"
unpack="false"/>

</feature>

------=_Part_0_1370476.1170266499221--
Re: product export is not working [message #462852 is a reply to message #462635] Thu, 01 February 2007 07:25 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: lamont_gilbert.rigidsoftware.com

On Wed, 31 Jan 2007 04:18:23 -0500, Christoph wrote:

> Thanks Alex,
> i will look into this. I´m trying to fix this for weeks now and can´t
> figure out what the problem is. I´m pretty sure that i have allready
> tried to let every plugin depend on every swt-related plugin directly
> which didn´t help. But i will try it again. :-( Thanks for your help
> Christoph

what you did does not fix the problem, it ignores it. Its time to dive in
and increase your understanding because ultimately you do not want to
deploy like that.

do you have a fresh Eclipse install, or is it an 'upgraded' install?
Re: product export is not working [message #467679 is a reply to message #462447] Wed, 09 May 2007 22:45 Go to previous message
Eclipse UserFriend
You might find this post of interest: "RCP "export" broken -- can Eclipse please develop a new
solution?"

Paul
Previous Topic:RCP Product Export Problems
Next Topic:Export... doesn't create "plugins" directory
Goto Forum:
  


Current Time: Sat May 24 13:12:57 EDT 2025

Powered by FUDForum. Page generated in 0.06280 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top