blob: 0390c0845896a3655c045a149ad0cf285cabe609 [file] [log] [blame]
package org.apache.xml.security.utils;
/**
*
* @author $Author$
*/
public class Version {
/** Version string. */
public static String fVersion = "@@VERSION@@";
public static final String getVersion() {
return Version.fVersion;
}
/**
* Prints out the version number to System.out. This is needed
* for the build system.
*/
public static void main(String argv[]) {
System.out.println(org.apache.xml.security.utils.Version.getVersion());
}
}