0

Once the plugins are built the bundle name contains the time stamp, for e.g. org.apache.batik.transcoder.source_1.6.0.v201011041432.jar

Also in manifest.mf the Bundle Version contains the same time stamp.

I want to keep the timestamp in manifest.mf but remove in bundle file name. Is that possible?

Anand
  • 2,239
  • 4
  • 32
  • 48
  • How do you build your plug-ins? – Tonny Madsen Dec 21 '12 at 09:40
  • I have ant scripts written, which builds the features via PDE Build. All this configured via Bamboo build tool. – Anand Dec 21 '12 at 12:06
  • In this case, you must add a new task to rename the plug-ins. To my knowledge, PDEBuild does not allow you to customize the resulting name... – Tonny Madsen Dec 23 '12 at 19:22
  • Yes, I also found that PDE Build does not allow such functionality. I wrote a custom task using Groovy, which works fine. Anyway thanks for the clarifications... – Anand Dec 27 '12 at 04:38

1 Answers1

1

To my knowledge, PDEBuild does not allow you to customize the resulting name...

You might want to consider using Tycho for your build as this is the tool of choice for Eclipse these days.

Tonny Madsen
  • 12,628
  • 4
  • 31
  • 70