I saw here that it is possible to manually insert specific fields to the manifest:
name := "project"
version := "2.3.5"
packageOptions := Seq(Package.ManifestAttributes(
("Implementation-Version", "2.3.5")))
I would like to use version
directly, without recopying the version number.
Putting version
instead of "2.3.5"
gives an error. Can I somehow use version
directly, without recopying the version number?