• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Problem in building Eclipse RCP Application

 
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
While running export script on an Eclipse RCP application using ant a folder called features get created in the build directory.
It contains a folder named org.eclipse.pde.build.container.feature which in turn consist of feature.xml and some other files.

The feature.xml is as below:
<feature id="org.eclipse.pde.build.container.feature" version="1.0.0">
<includes id="Test" version="0.0.0"/>
<includes optional="true" id="org.eclipse.platform.launchers" version="0.0.0"/>
</feature>

I have 2 queries.

1. From where does the feature.xml get data marked in bold, i.e version="1.0.0".

2. Where shall I make a change so that the first line of feature.xml is generated as below:
<feature
id="org.eclipse.pde.build.container.feature"
version="1.0.0"
os="win32"
ws="win32"
arch="x86">
I mean, where shall I specify os,ws and arch attribute.

Regards,
Joshua.

[edited to escape xml]
[ April 20, 2007: Message edited by: Jeanne Boyarsky ]
 
Joshua Antony
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<feature id="org.eclipse.pde.build.container.feature" version="1.0.0">

This got missed in the previous post

[edited to escape xml]
[ April 20, 2007: Message edited by: Jeanne Boyarsky ]
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic