You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
480 B
25 lines
480 B
package de.anomic.yacy;
|
|
/**
|
|
* Properties set when compiling this release/version
|
|
*/
|
|
public class yacyBuildProperties {
|
|
private yacyBuildProperties() {
|
|
}
|
|
|
|
public static String getSVNVersion() {
|
|
return "@REPL_REVISION_NR@";
|
|
}
|
|
|
|
public static String getVersion() {
|
|
return "@VERSION@";
|
|
}
|
|
|
|
/**
|
|
* determines, if this release was compiled and installed
|
|
* by a package manager
|
|
*/
|
|
public static boolean isPkgManager() {
|
|
return "@REPL_PKGMANAGER@".equals("true");
|
|
}
|
|
}
|