public VersionRelease(String homeDir)
throws FileNotFoundException, NoSuchAlgorithmException
{
jbossHome = new File(homeDir);
if( jbossHome.exists() == false )
throw new FileNotFoundException(jbossHome.getAbsolutePath() + " does not exist");
specTitle = System.getProperty("specification.title");
specVersion = System.getProperty("specification.version");
specVendor = System.getProperty("specification.vendor");
implTitle = System.getProperty("implementation.title");
implURL = System.getProperty("implementation.url");