Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Won't Fix
-
2.3
-
None
-
None
Description
In MANIFEST.MF, qualifiers in version are not renamed correctly
2.0.0-beta-1-SNAPSHOT must be rename by 2.0.0.beta-1-SNAPSHOT and not by 2.0.0-beta-1.SNAPSHOT
In OSGi spec R4 ยง3.2.4, versions can have a qualifier, but separator must be dot '.', not '-'
version ::=
major( '.' minor ( '.' micro ( '.' qualifier )? )? )?
major ::= number
minor ::= number
micro ::= number
qualifier ::= ( alphanum | '_' | '-' )+
For a patch, see maven-eclipse-plugin-447076.patch in MECLIPSE-140