All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.sardine.Version Maven / Gradle / Ivy

There is a newer version: 146
Show newest version
package com.googlecode.sardine;

/**
 * Provides version information from the manifest.
 * 
 * @author Jeff Schnitzer
 */
public class Version
{
	/** */
	public static String getSpecification()
	{
		Package pkg = Version.class.getPackage();
		return (pkg == null) ? null : pkg.getSpecificationVersion();
	}
	
	/** */
	public static String getImplementation()
	{
		Package pkg = Version.class.getPackage();
		return (pkg == null) ? null : 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());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy