TomDmitriev / gradle-bundle-plugin

Apache License 2.0
47 stars 24 forks source link

Semver-incompatibility #64

Closed yuchi closed 8 years ago

yuchi commented 8 years ago

Looks like there are issues when the Bundle-Version is specified by using the semver form M.m.b+timestamp, more precisely by having in the bnd file the form 1.0.0+${tstamp}.

Sorry for the horribly brief description. If you need more details I could look into it better.

rotty3000 commented 8 years ago

hey @yuchi having a + as the separator between the micro and qualifier is not supported by OSGi. The only legal separator is .

i.e. 1.0.0.${tstamp}

yuchi commented 8 years ago

That's what I feared. Then why is it the standard value in the bnd.bnd file built by blade create. Gonna investigate more. Thanks @rotty3000

yuchi commented 8 years ago

My bad, it's me that changed the form into the semver complaint one.