Package Versioning
I get the following output:
package josebotella.fr
Aplicacion: null
Version: null
Autor: null
when executing the following code:
static void printVersion() {
Package pac = Package.getPackage("josebotella.fr");
System.out.println(pac);//for debugging
System.out.println("Aplicacion: " + pac.getImplementationTitle());
System.out.println("Version: " + pac.getImplementationVersion());
System.out.println("Autor: " + pac.getImplementationVendor());
System.exit(0);
}
the manifest file is:
Manifest-Version: 1.0
Main-Class: josebotella.fr.FindReplace
Created-By: 1.3.0_02 (Sun Microsystems Inc.)
Name: josebotella/fr/
Implementation-Vendor: "Jose Botella Rojas"
Implementation-Version: "1.1"
Implementation-Title: "Buscador reemplazador de cadenas"
I have left two empty lines after the last one
The package is recognized because the output shows josebotella.fr
It seems there is something wrong with the implementation... lines
Any help would be greatly appreciated.

