Home » Eclipse Projects » Plugin Development Environment (PDE) » Exported product doesn't contain Eclipse dependencies - only my features
| Exported product doesn't contain Eclipse dependencies - only my features [message #36728] |
Wed, 10 December 2008 08:05  |
Eclipse User |
|
|
|
Originally posted by: michael.zend.com
Hi All!
I'm trying to export my product using the PDE headless build.
1. My build.properties file is as follows:
# Product file path
product=/com.my/MyProduct.product
# Prefix of the final archive
archivePrefix=MyProduct
collectingFolder=${archivePrefix}
# The list of {os, ws, arch} configurations to build.
configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
macosx,carbon,ppc
# Specify the output format of the compiler log when eclipse jdt is used
logExtension=.log
2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
containing all of my plugins and features
3. I have ${baseLocation} containing the Eclipse Platform, RCP delta pack
and all the dependencies.
The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
called ${buildId}-${os}.${ws}.${arch}.zip.
The problem is that these Zip files contain only my features not the
dependencies.
How this can be solved?
Thanks!
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #36763 is a reply to message #36728] |
Wed, 10 December 2008 10:39   |
Eclipse User |
|
|
|
Originally posted by: zx.code9.com
Michael Spector wrote:
> Hi All!
>
> I'm trying to export my product using the PDE headless build.
>
> 1. My build.properties file is as follows:
>
> # Product file path
> product=/com.my/MyProduct.product
>
> # Prefix of the final archive
> archivePrefix=MyProduct
> collectingFolder=${archivePrefix}
>
> # The list of {os, ws, arch} configurations to build.
> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
> macosx,carbon,ppc
>
> # Specify the output format of the compiler log when eclipse jdt is used
> logExtension=.log
>
> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
> containing all of my plugins and features
>
> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta pack
> and all the dependencies.
>
> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
> called ${buildId}-${os}.${ws}.${arch}.zip.
> The problem is that these Zip files contain only my features not the
> dependencies.
>
> How this can be solved?
Is your product feature or plug-in based ;)? If feature-based, are you
remembering to include the features you need? ie,. RCP feature...
Cheers,
~ Chris
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #36797 is a reply to message #36763] |
Wed, 10 December 2008 10:44   |
Eclipse User |
|
|
|
Originally posted by: michael.zend.com
Yes, my product is features based.
All features that are written between <features> section in .product file
present in the ${baseLocation}.
Anything else that I'm missing?
Thanks!
"Chris Aniszczyk" <zx@code9.com> wrote in message
news:ghonri$lcm$1@build.eclipse.org...
> Michael Spector wrote:
>> Hi All!
>>
>> I'm trying to export my product using the PDE headless build.
>>
>> 1. My build.properties file is as follows:
>>
>> # Product file path
>> product=/com.my/MyProduct.product
>>
>> # Prefix of the final archive
>> archivePrefix=MyProduct
>> collectingFolder=${archivePrefix}
>>
>> # The list of {os, ws, arch} configurations to build.
>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>> macosx,carbon,ppc
>>
>> # Specify the output format of the compiler log when eclipse jdt is used
>> logExtension=.log
>>
>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>> containing all of my plugins and features
>>
>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta pack
>> and all the dependencies.
>>
>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>> called ${buildId}-${os}.${ws}.${arch}.zip.
>> The problem is that these Zip files contain only my features not the
>> dependencies.
>>
>> How this can be solved?
>
> Is your product feature or plug-in based ;)? If feature-based, are you
> remembering to include the features you need? ie,. RCP feature...
>
> Cheers,
>
> ~ Chris
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #36831 is a reply to message #36797] |
Wed, 10 December 2008 11:57   |
Eclipse User |
|
|
|
Originally posted by: zx.code9.com
Michael Spector wrote:
> Yes, my product is features based.
> All features that are written between <features> section in .product file
> present in the ${baseLocation}.
> Anything else that I'm missing?
>
> Thanks!
>
>
> "Chris Aniszczyk" <zx@code9.com> wrote in message
> news:ghonri$lcm$1@build.eclipse.org...
>> Michael Spector wrote:
>>> Hi All!
>>>
>>> I'm trying to export my product using the PDE headless build.
>>>
>>> 1. My build.properties file is as follows:
>>>
>>> # Product file path
>>> product=/com.my/MyProduct.product
>>>
>>> # Prefix of the final archive
>>> archivePrefix=MyProduct
>>> collectingFolder=${archivePrefix}
>>>
>>> # The list of {os, ws, arch} configurations to build.
>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>> macosx,carbon,ppc
>>>
>>> # Specify the output format of the compiler log when eclipse jdt is used
>>> logExtension=.log
>>>
>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>> containing all of my plugins and features
>>>
>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta pack
>>> and all the dependencies.
>>>
>>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>>> called ${buildId}-${os}.${ws}.${arch}.zip.
>>> The problem is that these Zip files contain only my features not the
>>> dependencies.
>>>
>>> How this can be solved?
>> Is your product feature or plug-in based ;)? If feature-based, are you
>> remembering to include the features you need? ie,. RCP feature...
>>
>> Cheers,
>>
>> ~ Chris
>
>
Does any of your features include the RCP feature?
Cheers,
~ Chris
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #36865 is a reply to message #36831] |
Wed, 10 December 2008 13:02   |
Eclipse User |
|
|
|
Originally posted by: michael.zend.com
None of my features include RCP feature. Should they?
"Chris Aniszczyk" <zx@code9.com> wrote in message
news:ghose1$i9u$1@build.eclipse.org...
> Michael Spector wrote:
>> Yes, my product is features based.
>> All features that are written between <features> section in .product file
>> present in the ${baseLocation}.
>> Anything else that I'm missing?
>>
>> Thanks!
>>
>>
>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>> news:ghonri$lcm$1@build.eclipse.org...
>>> Michael Spector wrote:
>>>> Hi All!
>>>>
>>>> I'm trying to export my product using the PDE headless build.
>>>>
>>>> 1. My build.properties file is as follows:
>>>>
>>>> # Product file path
>>>> product=/com.my/MyProduct.product
>>>>
>>>> # Prefix of the final archive
>>>> archivePrefix=MyProduct
>>>> collectingFolder=${archivePrefix}
>>>>
>>>> # The list of {os, ws, arch} configurations to build.
>>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>>> macosx,carbon,ppc
>>>>
>>>> # Specify the output format of the compiler log when eclipse jdt is
>>>> used
>>>> logExtension=.log
>>>>
>>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>>> containing all of my plugins and features
>>>>
>>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta
>>>> pack and all the dependencies.
>>>>
>>>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>>>> called ${buildId}-${os}.${ws}.${arch}.zip.
>>>> The problem is that these Zip files contain only my features not the
>>>> dependencies.
>>>>
>>>> How this can be solved?
>>> Is your product feature or plug-in based ;)? If feature-based, are you
>>> remembering to include the features you need? ie,. RCP feature...
>>>
>>> Cheers,
>>>
>>> ~ Chris
>>
>>
>
> Does any of your features include the RCP feature?
>
> Cheers,
>
> ~ Chris
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #36899 is a reply to message #36831] |
Wed, 10 December 2008 15:26   |
Eclipse User |
|
|
|
Originally posted by: michael.zend.com
"Chris Aniszczyk" <zx@code9.com> wrote in message
news:ghose1$i9u$1@build.eclipse.org...
> Michael Spector wrote:
>> Yes, my product is features based.
>> All features that are written between <features> section in .product file
>> present in the ${baseLocation}.
>> Anything else that I'm missing?
>>
>> Thanks!
>>
>>
>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>> news:ghonri$lcm$1@build.eclipse.org...
>>> Michael Spector wrote:
>>>> Hi All!
>>>>
>>>> I'm trying to export my product using the PDE headless build.
>>>>
>>>> 1. My build.properties file is as follows:
>>>>
>>>> # Product file path
>>>> product=/com.my/MyProduct.product
>>>>
>>>> # Prefix of the final archive
>>>> archivePrefix=MyProduct
>>>> collectingFolder=${archivePrefix}
>>>>
>>>> # The list of {os, ws, arch} configurations to build.
>>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>>> macosx,carbon,ppc
>>>>
>>>> # Specify the output format of the compiler log when eclipse jdt is
>>>> used
>>>> logExtension=.log
>>>>
>>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>>> containing all of my plugins and features
>>>>
>>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta
>>>> pack and all the dependencies.
>>>>
>>>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>>>> called ${buildId}-${os}.${ws}.${arch}.zip.
>>>> The problem is that these Zip files contain only my features not the
>>>> dependencies.
>>>>
>>>> How this can be solved?
>>> Is your product feature or plug-in based ;)? If feature-based, are you
>>> remembering to include the features you need? ie,. RCP feature...
>>>
>>> Cheers,
>>>
>>> ~ Chris
>>
>>
>
> Does any of your features include the RCP feature?
I've tried to include RCP feature in one of my features - that didn't work
either.
The final archive still contains just plug-ins and features from
$buildDirectory/plugins, $buildDirectory/features, not the dependencies.
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #36933 is a reply to message #36899] |
Wed, 10 December 2008 17:18   |
Eclipse User |
|
|
|
Michael Spector wrote:
> "Chris Aniszczyk" <zx@code9.com> wrote in message
> news:ghose1$i9u$1@build.eclipse.org...
>> Michael Spector wrote:
>>> Yes, my product is features based.
>>> All features that are written between <features> section in .product file
>>> present in the ${baseLocation}.
>>> Anything else that I'm missing?
>>>
>>> Thanks!
>>>
>>>
>>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>>> news:ghonri$lcm$1@build.eclipse.org...
>>>> Michael Spector wrote:
>>>>> Hi All!
>>>>>
>>>>> I'm trying to export my product using the PDE headless build.
>>>>>
>>>>> 1. My build.properties file is as follows:
>>>>>
>>>>> # Product file path
>>>>> product=/com.my/MyProduct.product
>>>>>
>>>>> # Prefix of the final archive
>>>>> archivePrefix=MyProduct
>>>>> collectingFolder=${archivePrefix}
>>>>>
>>>>> # The list of {os, ws, arch} configurations to build.
>>>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>>>> macosx,carbon,ppc
>>>>>
>>>>> # Specify the output format of the compiler log when eclipse jdt is
>>>>> used
>>>>> logExtension=.log
>>>>>
>>>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>>>> containing all of my plugins and features
>>>>>
>>>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta
>>>>> pack and all the dependencies.
>>>>>
>>>>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>>>>> called ${buildId}-${os}.${ws}.${arch}.zip.
>>>>> The problem is that these Zip files contain only my features not the
>>>>> dependencies.
>>>>>
>>>>> How this can be solved?
>>>> Is your product feature or plug-in based ;)? If feature-based, are you
>>>> remembering to include the features you need? ie,. RCP feature...
>>>>
>>>> Cheers,
>>>>
>>>> ~ Chris
>>>
>> Does any of your features include the RCP feature?
>
>
> I've tried to include RCP feature in one of my features - that didn't work
> either.
> The final archive still contains just plug-ins and features from
> $buildDirectory/plugins, $buildDirectory/features, not the dependencies.
>
>
>
Make sure your build.properties has "runPackager=true".
(You also need to include the RCP feature, but you've already done that).
-Andrew
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #36966 is a reply to message #36933] |
Thu, 11 December 2008 03:55  |
Eclipse User |
|
|
|
Originally posted by: michael.zend.com
Ok, that wasn't the problem. My problem was a missing line in
build.properties:
runPackager=false
"Andrew Niefer" <aniefer@ca.ibm.com> wrote in message
news:ghpf6r$f0s$1@build.eclipse.org...
> Michael Spector wrote:
>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>> news:ghose1$i9u$1@build.eclipse.org...
>>> Michael Spector wrote:
>>>> Yes, my product is features based.
>>>> All features that are written between <features> section in .product
>>>> file present in the ${baseLocation}.
>>>> Anything else that I'm missing?
>>>>
>>>> Thanks!
>>>>
>>>>
>>>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>>>> news:ghonri$lcm$1@build.eclipse.org...
>>>>> Michael Spector wrote:
>>>>>> Hi All!
>>>>>>
>>>>>> I'm trying to export my product using the PDE headless build.
>>>>>>
>>>>>> 1. My build.properties file is as follows:
>>>>>>
>>>>>> # Product file path
>>>>>> product=/com.my/MyProduct.product
>>>>>>
>>>>>> # Prefix of the final archive
>>>>>> archivePrefix=MyProduct
>>>>>> collectingFolder=${archivePrefix}
>>>>>>
>>>>>> # The list of {os, ws, arch} configurations to build.
>>>>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>>>>> macosx,carbon,ppc
>>>>>>
>>>>>> # Specify the output format of the compiler log when eclipse jdt is
>>>>>> used
>>>>>> logExtension=.log
>>>>>>
>>>>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>>>>> containing all of my plugins and features
>>>>>>
>>>>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta
>>>>>> pack and all the dependencies.
>>>>>>
>>>>>> The resulted Zip files are placed into
>>>>>> ${buildDirectory}/${buildLabel}, called
>>>>>> ${buildId}-${os}.${ws}.${arch}.zip.
>>>>>> The problem is that these Zip files contain only my features not the
>>>>>> dependencies.
>>>>>>
>>>>>> How this can be solved?
>>>>> Is your product feature or plug-in based ;)? If feature-based, are you
>>>>> remembering to include the features you need? ie,. RCP feature...
>>>>>
>>>>> Cheers,
>>>>>
>>>>> ~ Chris
>>>>
>>> Does any of your features include the RCP feature?
>>
>>
>> I've tried to include RCP feature in one of my features - that didn't
>> work either.
>> The final archive still contains just plug-ins and features from
>> $buildDirectory/plugins, $buildDirectory/features, not the dependencies.
>>
>>
>>
>
> Make sure your build.properties has "runPackager=true".
> (You also need to include the RCP feature, but you've already done that).
>
> -Andrew
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #586818 is a reply to message #36728] |
Wed, 10 December 2008 10:39  |
Eclipse User |
|
|
|
Michael Spector wrote:
> Hi All!
>
> I'm trying to export my product using the PDE headless build.
>
> 1. My build.properties file is as follows:
>
> # Product file path
> product=/com.my/MyProduct.product
>
> # Prefix of the final archive
> archivePrefix=MyProduct
> collectingFolder=${archivePrefix}
>
> # The list of {os, ws, arch} configurations to build.
> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
> macosx,carbon,ppc
>
> # Specify the output format of the compiler log when eclipse jdt is used
> logExtension=.log
>
> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
> containing all of my plugins and features
>
> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta pack
> and all the dependencies.
>
> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
> called ${buildId}-${os}.${ws}.${arch}.zip.
> The problem is that these Zip files contain only my features not the
> dependencies.
>
> How this can be solved?
Is your product feature or plug-in based ;)? If feature-based, are you
remembering to include the features you need? ie,. RCP feature...
Cheers,
~ Chris
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #586836 is a reply to message #36763] |
Wed, 10 December 2008 10:44  |
Eclipse User |
|
|
|
Yes, my product is features based.
All features that are written between <features> section in .product file
present in the ${baseLocation}.
Anything else that I'm missing?
Thanks!
"Chris Aniszczyk" <zx@code9.com> wrote in message
news:ghonri$lcm$1@build.eclipse.org...
> Michael Spector wrote:
>> Hi All!
>>
>> I'm trying to export my product using the PDE headless build.
>>
>> 1. My build.properties file is as follows:
>>
>> # Product file path
>> product=/com.my/MyProduct.product
>>
>> # Prefix of the final archive
>> archivePrefix=MyProduct
>> collectingFolder=${archivePrefix}
>>
>> # The list of {os, ws, arch} configurations to build.
>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>> macosx,carbon,ppc
>>
>> # Specify the output format of the compiler log when eclipse jdt is used
>> logExtension=.log
>>
>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>> containing all of my plugins and features
>>
>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta pack
>> and all the dependencies.
>>
>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>> called ${buildId}-${os}.${ws}.${arch}.zip.
>> The problem is that these Zip files contain only my features not the
>> dependencies.
>>
>> How this can be solved?
>
> Is your product feature or plug-in based ;)? If feature-based, are you
> remembering to include the features you need? ie,. RCP feature...
>
> Cheers,
>
> ~ Chris
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #586846 is a reply to message #36797] |
Wed, 10 December 2008 11:57  |
Eclipse User |
|
|
|
Michael Spector wrote:
> Yes, my product is features based.
> All features that are written between <features> section in .product file
> present in the ${baseLocation}.
> Anything else that I'm missing?
>
> Thanks!
>
>
> "Chris Aniszczyk" <zx@code9.com> wrote in message
> news:ghonri$lcm$1@build.eclipse.org...
>> Michael Spector wrote:
>>> Hi All!
>>>
>>> I'm trying to export my product using the PDE headless build.
>>>
>>> 1. My build.properties file is as follows:
>>>
>>> # Product file path
>>> product=/com.my/MyProduct.product
>>>
>>> # Prefix of the final archive
>>> archivePrefix=MyProduct
>>> collectingFolder=${archivePrefix}
>>>
>>> # The list of {os, ws, arch} configurations to build.
>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>> macosx,carbon,ppc
>>>
>>> # Specify the output format of the compiler log when eclipse jdt is used
>>> logExtension=.log
>>>
>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>> containing all of my plugins and features
>>>
>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta pack
>>> and all the dependencies.
>>>
>>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>>> called ${buildId}-${os}.${ws}.${arch}.zip.
>>> The problem is that these Zip files contain only my features not the
>>> dependencies.
>>>
>>> How this can be solved?
>> Is your product feature or plug-in based ;)? If feature-based, are you
>> remembering to include the features you need? ie,. RCP feature...
>>
>> Cheers,
>>
>> ~ Chris
>
>
Does any of your features include the RCP feature?
Cheers,
~ Chris
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #586860 is a reply to message #36831] |
Wed, 10 December 2008 13:02  |
Eclipse User |
|
|
|
None of my features include RCP feature. Should they?
"Chris Aniszczyk" <zx@code9.com> wrote in message
news:ghose1$i9u$1@build.eclipse.org...
> Michael Spector wrote:
>> Yes, my product is features based.
>> All features that are written between <features> section in .product file
>> present in the ${baseLocation}.
>> Anything else that I'm missing?
>>
>> Thanks!
>>
>>
>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>> news:ghonri$lcm$1@build.eclipse.org...
>>> Michael Spector wrote:
>>>> Hi All!
>>>>
>>>> I'm trying to export my product using the PDE headless build.
>>>>
>>>> 1. My build.properties file is as follows:
>>>>
>>>> # Product file path
>>>> product=/com.my/MyProduct.product
>>>>
>>>> # Prefix of the final archive
>>>> archivePrefix=MyProduct
>>>> collectingFolder=${archivePrefix}
>>>>
>>>> # The list of {os, ws, arch} configurations to build.
>>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>>> macosx,carbon,ppc
>>>>
>>>> # Specify the output format of the compiler log when eclipse jdt is
>>>> used
>>>> logExtension=.log
>>>>
>>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>>> containing all of my plugins and features
>>>>
>>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta
>>>> pack and all the dependencies.
>>>>
>>>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>>>> called ${buildId}-${os}.${ws}.${arch}.zip.
>>>> The problem is that these Zip files contain only my features not the
>>>> dependencies.
>>>>
>>>> How this can be solved?
>>> Is your product feature or plug-in based ;)? If feature-based, are you
>>> remembering to include the features you need? ie,. RCP feature...
>>>
>>> Cheers,
>>>
>>> ~ Chris
>>
>>
>
> Does any of your features include the RCP feature?
>
> Cheers,
>
> ~ Chris
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #586870 is a reply to message #36831] |
Wed, 10 December 2008 15:26  |
Eclipse User |
|
|
|
"Chris Aniszczyk" <zx@code9.com> wrote in message
news:ghose1$i9u$1@build.eclipse.org...
> Michael Spector wrote:
>> Yes, my product is features based.
>> All features that are written between <features> section in .product file
>> present in the ${baseLocation}.
>> Anything else that I'm missing?
>>
>> Thanks!
>>
>>
>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>> news:ghonri$lcm$1@build.eclipse.org...
>>> Michael Spector wrote:
>>>> Hi All!
>>>>
>>>> I'm trying to export my product using the PDE headless build.
>>>>
>>>> 1. My build.properties file is as follows:
>>>>
>>>> # Product file path
>>>> product=/com.my/MyProduct.product
>>>>
>>>> # Prefix of the final archive
>>>> archivePrefix=MyProduct
>>>> collectingFolder=${archivePrefix}
>>>>
>>>> # The list of {os, ws, arch} configurations to build.
>>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>>> macosx,carbon,ppc
>>>>
>>>> # Specify the output format of the compiler log when eclipse jdt is
>>>> used
>>>> logExtension=.log
>>>>
>>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>>> containing all of my plugins and features
>>>>
>>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta
>>>> pack and all the dependencies.
>>>>
>>>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>>>> called ${buildId}-${os}.${ws}.${arch}.zip.
>>>> The problem is that these Zip files contain only my features not the
>>>> dependencies.
>>>>
>>>> How this can be solved?
>>> Is your product feature or plug-in based ;)? If feature-based, are you
>>> remembering to include the features you need? ie,. RCP feature...
>>>
>>> Cheers,
>>>
>>> ~ Chris
>>
>>
>
> Does any of your features include the RCP feature?
I've tried to include RCP feature in one of my features - that didn't work
either.
The final archive still contains just plug-ins and features from
$buildDirectory/plugins, $buildDirectory/features, not the dependencies.
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #586882 is a reply to message #36899] |
Wed, 10 December 2008 17:18  |
Eclipse User |
|
|
|
Michael Spector wrote:
> "Chris Aniszczyk" <zx@code9.com> wrote in message
> news:ghose1$i9u$1@build.eclipse.org...
>> Michael Spector wrote:
>>> Yes, my product is features based.
>>> All features that are written between <features> section in .product file
>>> present in the ${baseLocation}.
>>> Anything else that I'm missing?
>>>
>>> Thanks!
>>>
>>>
>>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>>> news:ghonri$lcm$1@build.eclipse.org...
>>>> Michael Spector wrote:
>>>>> Hi All!
>>>>>
>>>>> I'm trying to export my product using the PDE headless build.
>>>>>
>>>>> 1. My build.properties file is as follows:
>>>>>
>>>>> # Product file path
>>>>> product=/com.my/MyProduct.product
>>>>>
>>>>> # Prefix of the final archive
>>>>> archivePrefix=MyProduct
>>>>> collectingFolder=${archivePrefix}
>>>>>
>>>>> # The list of {os, ws, arch} configurations to build.
>>>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>>>> macosx,carbon,ppc
>>>>>
>>>>> # Specify the output format of the compiler log when eclipse jdt is
>>>>> used
>>>>> logExtension=.log
>>>>>
>>>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>>>> containing all of my plugins and features
>>>>>
>>>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta
>>>>> pack and all the dependencies.
>>>>>
>>>>> The resulted Zip files are placed into ${buildDirectory}/${buildLabel},
>>>>> called ${buildId}-${os}.${ws}.${arch}.zip.
>>>>> The problem is that these Zip files contain only my features not the
>>>>> dependencies.
>>>>>
>>>>> How this can be solved?
>>>> Is your product feature or plug-in based ;)? If feature-based, are you
>>>> remembering to include the features you need? ie,. RCP feature...
>>>>
>>>> Cheers,
>>>>
>>>> ~ Chris
>>>
>> Does any of your features include the RCP feature?
>
>
> I've tried to include RCP feature in one of my features - that didn't work
> either.
> The final archive still contains just plug-ins and features from
> $buildDirectory/plugins, $buildDirectory/features, not the dependencies.
>
>
>
Make sure your build.properties has "runPackager=true".
(You also need to include the RCP feature, but you've already done that).
-Andrew
|
|
|
| Re: Exported product doesn't contain Eclipse dependencies - only my features [message #586895 is a reply to message #36933] |
Thu, 11 December 2008 03:55  |
Eclipse User |
|
|
|
Ok, that wasn't the problem. My problem was a missing line in
build.properties:
runPackager=false
"Andrew Niefer" <aniefer@ca.ibm.com> wrote in message
news:ghpf6r$f0s$1@build.eclipse.org...
> Michael Spector wrote:
>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>> news:ghose1$i9u$1@build.eclipse.org...
>>> Michael Spector wrote:
>>>> Yes, my product is features based.
>>>> All features that are written between <features> section in .product
>>>> file present in the ${baseLocation}.
>>>> Anything else that I'm missing?
>>>>
>>>> Thanks!
>>>>
>>>>
>>>> "Chris Aniszczyk" <zx@code9.com> wrote in message
>>>> news:ghonri$lcm$1@build.eclipse.org...
>>>>> Michael Spector wrote:
>>>>>> Hi All!
>>>>>>
>>>>>> I'm trying to export my product using the PDE headless build.
>>>>>>
>>>>>> 1. My build.properties file is as follows:
>>>>>>
>>>>>> # Product file path
>>>>>> product=/com.my/MyProduct.product
>>>>>>
>>>>>> # Prefix of the final archive
>>>>>> archivePrefix=MyProduct
>>>>>> collectingFolder=${archivePrefix}
>>>>>>
>>>>>> # The list of {os, ws, arch} configurations to build.
>>>>>> configs=linux,gtk,x86 & linux,gtk,x86_64 & win32,win32,x86 &
>>>>>> macosx,carbon,ppc
>>>>>>
>>>>>> # Specify the output format of the compiler log when eclipse jdt is
>>>>>> used
>>>>>> logExtension=.log
>>>>>>
>>>>>> 2. I have ${buildDirectory}/plugins and ${buildDirectory}/features
>>>>>> containing all of my plugins and features
>>>>>>
>>>>>> 3. I have ${baseLocation} containing the Eclipse Platform, RCP delta
>>>>>> pack and all the dependencies.
>>>>>>
>>>>>> The resulted Zip files are placed into
>>>>>> ${buildDirectory}/${buildLabel}, called
>>>>>> ${buildId}-${os}.${ws}.${arch}.zip.
>>>>>> The problem is that these Zip files contain only my features not the
>>>>>> dependencies.
>>>>>>
>>>>>> How this can be solved?
>>>>> Is your product feature or plug-in based ;)? If feature-based, are you
>>>>> remembering to include the features you need? ie,. RCP feature...
>>>>>
>>>>> Cheers,
>>>>>
>>>>> ~ Chris
>>>>
>>> Does any of your features include the RCP feature?
>>
>>
>> I've tried to include RCP feature in one of my features - that didn't
>> work either.
>> The final archive still contains just plug-ins and features from
>> $buildDirectory/plugins, $buildDirectory/features, not the dependencies.
>>
>>
>>
>
> Make sure your build.properties has "runPackager=true".
> (You also need to include the RCP feature, but you've already done that).
>
> -Andrew
|
|
|
Goto Forum:
Current Time: Sun Nov 09 17:19:20 EST 2025
Powered by FUDForum. Page generated in 0.05275 seconds
|