ch.ethz.ssh2.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ganymed-ssh2 Show documentation
Show all versions of ganymed-ssh2 Show documentation
Ganymed SSH-2: Java based SSH-2 Protocol Implementation
The newest version!
package ch.ethz.ssh2;
/**
* Provides version information from the manifest.
*
* @version $Id: Version.java 69 2013-08-09 06:39:56Z [email protected] $
*/
public class Version
{
public static String getSpecification()
{
Package pkg = Version.class.getPackage();
return (pkg == null) ? "SNAPSHOT" : pkg.getSpecificationVersion();
}
public static String getImplementation()
{
Package pkg = Version.class.getPackage();
return (pkg == null) ? "SNAPSHOT" : pkg.getImplementationVersion();
}
/**
* A simple main method that prints the version and exits
*/
public static void main(String[] args)
{
System.out.println("Version: " + getSpecification());
System.out.println("Implementation: " + getImplementation());
}
}